flux how do you get value from secret and substitute that with your helm releases
In helm, it is very common to deploy helm with secret values. This secret are typically kubernetes secret. To see this in action, we will create a secret and then we will deploy our helm using HelmRelease from Flux (please do not mixed this up with Kustomization - we often used it together) Here is our secret and this is what it looks like :- apiVersion : v1 kind : Secret metadata : name : external-dns-credentials namespace : kube-system type : Opaque stringData : tenantId : " tenantId " subscriptionId : " subscriptionId " resourceGroup : " my-resource-group " aadClientId : "myclientId " aadClientSecret : " mysecret " And this is the template that get the value file from a secret and put it into the proper place apiVersion: helm.toolkit.fluxcd.io/v2 kind: HelmRelease metadata: name: external-dns-ext spec: releaseName: external-dns-ext targetNamespace: kube-system interval: 5m chart:...