orange-policeman-59119
05/04/2019, 7:13 PM.Values.podDnsConfig.nameservers
is referenced in the chart?adamant-intern-63433
05/04/2019, 7:22 PM<https://gcsweb.istio.io/gcs/istio-release/releases/1.1.5/charts/>
and the config belongs to certmanager (`https://github.com/jetstack/cert-manager/blob/release-0.7/deploy/charts/cert-manager/templates/deployment.yaml#L119`).
I was trying to compare the one that istio has and the original one and it seems OK individually. There could be a clash with another part of the result yaml.
My full istio chart values are something like this
const istioChartValues = {
prometheus: { enabled: true },
grafana: { enabled: true },
tracing: { enabled: true },
certmanager: {
enabled: true,
email: "<mailto:xt@x.com|xt@x.com>",
podDnsPolicy: "None",
podDnsConfig: {
nameservers: ["1.1.1.1", "8.8.8.8"]
}
},
gateways: {
"istio-ingressgateway":
{
serviceAnnotations: { "<http://service.beta.kubernetes.io/azure-load-balancer-internal|service.beta.kubernetes.io/azure-load-balancer-internal>": true }, //<https://docs.microsoft.com/en-us/azure/aks/internal-lb#create-an-internal-load-balancer>
}
},
}
podDnsConfig
of cert-manager looks like
helm install --name cert-manager \
--namespace cert-manager \
--set "podDnsPolicy"="None" \
--set "podDnsConfig.nameservers[1]"="1.1.1.1" \
--set "podDnsConfig.nameservers[2]"="8.8.8.8" \
stable/cert-manager
which matches with my config, I believeorange-policeman-59119
05/04/2019, 7:34 PMadamant-intern-63433
05/04/2019, 7:34 PMorange-policeman-59119
05/04/2019, 7:35 PM--set
, I just checked my own configsadamant-intern-63433
05/04/2019, 7:37 PMorange-policeman-59119
05/04/2019, 7:38 PMadamant-intern-63433
05/04/2019, 7:38 PMorange-policeman-59119
05/04/2019, 7:39 PMadamant-intern-63433
05/04/2019, 7:42 PMdnsPolicy: None
dnsConfig:
nameservers:
- 1.1.1.1
- 8.8.8.8