Files
homelab-v/apps/test2.yaml
T
Vegard Hagen 67049f2e01 feat(helm): Introducing Helm Charts for templating
Using templates should reduce the amount of duplicated config
2023-04-09 19:28:31 +02:00

34 lines
690 B
YAML

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: test2
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: applications
source:
path: helm/application
repoURL: https://github.com/vehagn/homelab
targetRevision: HEAD
helm:
values: |
name: test2
namespace: test
image:
name: containous/whoami
service:
containerPort: 80
auth:
enabled: true
create: false
destination:
namespace: test
name: in-cluster
syncPolicy:
automated:
selfHeal: true
prune: true
syncOptions:
- CreateNamespace=true