mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
21 lines
544 B
YAML
21 lines
544 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: buildify
|
|
namespace: argocd # The namespace where ArgoCD is installed
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://github.com/bayer-int/buildify.git # Use SSH URL format
|
|
targetRevision: HEAD
|
|
path: k8s
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: buildify # The namespace where the application will be deployed
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|