Philip Larkin
Results
2
comments of
Philip Larkin
I get a similar problem if there is a --- inside a range ``` {{ range list 1 2 3 -}} apiVersion: apps/v1 kind: StatefulSet metadata: name: zookeeper{{ . }}...
It can be gotten around by using a variable to replace the `---` EG ``` {{ $end := "---" }} {{ range list 1 2 3 -}} apiVersion: apps/v1 kind:...