原文:https://*.com/questions/53973887/helm-simple-for-loop
[root@master templates]# ls
headless-srv.yaml _helpers.tpl out-srv.yaml statefulset.yaml ui-srv.yaml
[root@master templates]# cat out-srv.yaml
{{- $num := 5 -}}
{{- range $index := untilStep 0 $num 1}}
---
apiVersion: v1
kind: Service
metadata:
name: my-service
spec:
selector:
app: MyApp
myLabelName: "{{ $index}}-888888"
ports:
- protocol: TCP
port: 80
targetPort: 9376
{{- end }}