Skip to content

Commit 26db089

Browse files
authored
docs: add chart field to application.yaml (argoproj#8239)
* docs: add chart field to application.yaml Signed-off-by: Michael Crenshaw <michael@crenshaw.dev> * docs: more clarification Signed-off-by: Michael Crenshaw <michael@crenshaw.dev>
1 parent 3ae9bff commit 26db089

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/operator-manual/application.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: guestbook
55
# You'll usually want to add your resources to the argocd namespace.
66
namespace: argocd
7-
# Add a this finalizer ONLY if you want these to cascade delete.
7+
# Add this finalizer ONLY if you want these to cascade delete.
88
finalizers:
99
- resources-finalizer.argocd.argoproj.io
1010
spec:
@@ -13,11 +13,12 @@ spec:
1313

1414
# Source of the application manifests
1515
source:
16-
repoURL: https://github.com/argoproj/argocd-example-apps.git
17-
targetRevision: HEAD
18-
path: guestbook
16+
repoURL: https://github.com/argoproj/argocd-example-apps.git # Can point to either a Helm chart repo or a git repo.
17+
targetRevision: HEAD # For Helm, this refers to the chart version.
18+
path: guestbook # This has no meaning for Helm charts pulled directly from a Helm repo instead of git.
1919

2020
# helm specific config
21+
chart: chart-name # Set this when pulling directly from a Helm repo. DO NOT set for git-hosted Helm charts.
2122
helm:
2223
# Extra parameters to set (same as setting through values.yaml, but these take precedence)
2324
parameters:

0 commit comments

Comments
 (0)