Browse Source

changes on master to apps/templates/helm-guestbook.yaml,apps/templates/kustomize-guestbook.yaml,apps/templates/sync-waves.yaml,apps/values.yaml,

pull/40/head
Alex Collins 6 years ago
parent
commit
dec633ae9a
  1. 2
      apps/templates/helm-guestbook.yaml
  2. 2
      apps/templates/kustomize-guestbook.yaml
  3. 4
      apps/templates/sync-waves.yaml
  4. 1
      apps/values.yaml

2
apps/templates/helm-guestbook.yaml

@ -12,7 +12,7 @@ spec:
project: default
source:
path: helm-guestbook
repoURL: https://github.com/argoproj/argocd-example-apps
repoURL: {{ .Values.spec.source.repoURL }}
targetRevision: {{ .Values.spec.source.targetRevision }}
syncPolicy:
automated:

2
apps/templates/kustomize-guestbook.yaml

@ -12,7 +12,7 @@ spec:
project: default
source:
path: kustomize-guestbook
repoURL: https://github.com/argoproj/argocd-example-apps
repoURL: {{ .Values.spec.source.repoURL }}
targetRevision: {{ .Values.spec.source.targetRevision }}
syncPolicy:
automated:

4
apps/templates/sync-waves.yaml

@ -11,8 +11,8 @@ spec:
server: {{ .Values.spec.destination.server }}
project: default
source:
path: guestbook
repoURL: https://github.com/argoproj/argocd-example-apps
path: sync-waves
repoURL: {{ .Values.spec.source.repoURL }}
targetRevision: {{ .Values.spec.source.targetRevision }}
syncPolicy:
automated:

1
apps/values.yaml

@ -2,4 +2,5 @@ spec:
destination:
server: https://kubernetes.default.svc
source:
repoURL: https://github.com/argoproj/argocd-example-apps
targetRevision: HEAD
Loading…
Cancel
Save