Closed3
helmfileで環境変数を使う
requiredEnv
を使用する
helmfile.yaml
- name: argocd
namespace: argocd
chart: argo/argo-cd
version: 7.5.2
values:
- ./values/argocd-values.yaml.gotmpl
- server:
ingress:
annotations:
alb.ingress.kubernetes.io/inbound-cidrs: {{ requiredEnv "LocalIP" }}/32
$ export LocalIP=xxx
$ helmfile sync
このスクラップは2ヶ月前にクローズされました