helm tutorial
2023-03-04 本文已影响0人
allenhaozi
helm loop
# templates/loop.yaml
# reference: https://github.com/helm/helm/issues/1055
{{ $count := (.Values.replicaCount | int) }}
{{- range until $count }}
spec:
index: {{ . }}
{{ end }}
# templates/loop.yaml
# reference: https://github.com/helm/helm/issues/1055
{{ $count := (.Values.replicaCount | int) }}
{{- range until $count }}
spec:
index: {{ . }}
{{ end }}