Skip to content

Commit

Permalink
fix: documentation for Helm Template Value (#8991)
Browse files Browse the repository at this point in the history
* Fix documentation for Helm Template Value

* Change dot to underscore
  • Loading branch information
frankfarzan authored Aug 11, 2023
1 parent d019fdd commit 58f3d4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs-v2/content/en/docs/renderers/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ manifests:
releases:
- name: my-release
setValueTemplates:
image.repository: "{{.myFirstImage.IMAGE_REPO}}"
image.tag: "{{.myFirstImage.IMAGE_TAG}}"
image2.repository: "{{.mySecondImage.IMAGE_REPO}}"
image2.tag: "{{.mySecondImage.IMAGE_TAG}}"
image.repository: "{{.IMAGE_REPO_myFirstImage}}"
image.tag: "{{.IMAGE_TAG_myFirstImage}}"
image2.repository: "{{.IMAGE_REPO_mySecondImage}}"
image2.tag: "{{.IMAGE_TAG_mySecondImage}}"
setValues:
image.pullPolicy: "IfNotPresent"
image2.pullPolicy: "IfNotPresent"
Expand Down

0 comments on commit 58f3d4a

Please sign in to comment.