fisju
fisju
you can use anchors for that but there is a limitation that you cannot modify the value (e.g. concatenate) see https://helm.sh/docs/chart_template_guide/yaml_techniques/#yaml-anchors
Unfortunately not. You can use it only as it is. No modification is possible and "use in string" is actually modification/concatenation and that's not possible. you can have ```yaml url:...
Thank you. This is a sample how I thought it would work ```yaml apiVersion: v1 data: ca.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSU.................. tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSU.................. tls.key: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSU.................. kind: Secret metadata: name: server-certs namespace: istio-gateways type:...
Thank you for your work on this project. I am consistently encountering errors whenever only credentialNames is used in the Gateway configuration. Here are the scenarios I have tested: -...
I have tried this configuration with both versions 1.26.0 and 1.26.1, but unfortunately, it consistently fails at the following section: ```yaml tls: credentialNames: - server-certs ``` From what I can...