ikatlinsky opened a new pull request, #770:
URL: https://github.com/apache/apisix-helm-chart/pull/770
This pull request addresses 2 cases:
1. Updating some of the configuration options to be rendered through the
_tpl_ directive, which is needed to improve configurability and reusability of
the parameters when the values file is composed. Ideally all parameters should
be migrated to this approach to make it more consistent and predictable.
For example:
Ingress
```
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: nginx
hosts:
- host: "{{ tpl .Values.global.app.host . }}"
paths:
- "/"
tls:
- secretName: "{{ tpl .Values.global.config.secrets.tlsSecret . }}"
hosts:
- "{{ tpl .Values.global.app.host . }}"
```
External etcd
```
externalEtcd:
host:
- "http://{{ tpl .Values.global.app.etcdHost . }}:2379"
prefix: "/apisix"
user: ""
```
2. Updating the version of the dashboard and ingress controller images to
the latest versions
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]