Closed nyodas closed 8 years ago
The templating specified in the attibutes/*.yml in a pod happens before the merge of $TEMPLATER_OVERRIDE and them.
in aci:
Users: bob: a
in pod:
AllowUsers: '{{range $i,$d := .sshd.Users}}{{$i}} {{end}}' Users: healtcheck: a
in TEMPLATER_OVERRIDE
Users: yolo: a
rendered.
AllowUsers: "bob healthcheck"
Is it working as intended ?
nop,
Nice catch. I will fix it
fixed in v72
The templating specified in the attibutes/*.yml in a pod happens before the merge of $TEMPLATER_OVERRIDE and them.
in aci:
in pod:
in TEMPLATER_OVERRIDE
rendered.
Is it working as intended ?