ahmedgabers opened a new issue, #1005:
URL: https://github.com/apache/apisix-helm-chart/issues/1005

   `extraContainers` is rendered with plain `toYaml`, so entries are treated as 
opaque container specs. That makes it impossible to compose an entry's `image` 
from other values — for example a registry/mirror prefix or a CI-injected tag 
shared with the chart's first-class image fields. Today the only option is 
hardcoding a full image string per environment, which drifts from the rest of 
the chart's image configuration.
   
   Many charts render their extra-container passthroughs through `tpl` so 
entries may carry template expressions, e.g.:
   
   ```yaml
   extraContainers:
     - name: log-shipper
       image: "{{ .Values.someRepository }}:{{ .Values.someTag }}"
   ```
   
   Proposed fix in #1003 — a one-line change (`tpl (toYaml 
.Values.extraContainers) .`); plain specs render byte-identical.


-- 
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]

Reply via email to