Skip to content

Instantly share code, notes, and snippets.

@nakamasato
Created July 4, 2021 02:33
Show Gist options
  • Save nakamasato/423fdfadf6b9f92642211ca09262cae5 to your computer and use it in GitHub Desktop.
Save nakamasato/423fdfadf6b9f92642211ca09262cae5 to your computer and use it in GitHub Desktop.
Helm Value example
...
spec:
template:
spec:
containers:
- name: nginx
image: "{{ .Values.nginx.image.repository }}:{{ .Values.nginx.image.tag | default "latest" }}"
...
nginx:
image:
repository: nginx
pullPolicy: IfNotPresent
tag: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment