wide-finland-25364
01/20/2022, 7:19 AMpulumi up
, the certs in Secrets kube-system/aws-load-balancer-tls
get replaced. I even tried "keepTLSSecret: true," but no-go.
I see that kubernetes:<http://admissionregistration.k8s.io/v1:MutatingWebhookConfiguration|admissionregistration.k8s.io/v1:MutatingWebhookConfiguration>
and kubernetes:<http://admissionregistration.k8s.io/v1:ValidatingWebhookConfiguration|admissionregistration.k8s.io/v1:ValidatingWebhookConfiguration>
gets updated too. Is there a way to mitigate this? This is the code
// Install AWS Load Balancer Controller via Helm chart
const awslbcontroller = new k8s.helm.v3.Chart("aws-load-balancer-controller", {
chart: "aws-load-balancer-controller",
version: "1.3.3",
namespace: "kube-system",
fetchOpts:{
repo: "<https://aws.github.io/eks-charts>",
},
values: {
clusterName: clusterName,
keepTLSSecret: true,
}
}, {provider: cluster.provider});
worried-city-86458
01/21/2022, 3:07 AMenableCertManager: true
PS. I recommend using helm release resources instead of helm chart resourceswide-finland-25364
01/21/2022, 6:21 PM