You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We wanted to add custom error pages for our load balancer, and since each load balancer depence on their own ingress-nginx we need to be able to template the volume configmap.
```
extraVolumes:
- name: custom-error-pages
configMap:
name: "{{ .Release.Name }}-custom-error-pages"
```
Now gives us:
```
volumes:
- configMap:
name: '{{ .Release.Name }}-custom-error-pages'
```
0 commit comments