Re: [kubernetes-users] How to update ssl certificate for ingress https load balancer

2018-02-15 Thread mderosa83
Hi, thanks for your suggestion. I can confirm that this procedure is working: 1) create another secret with the new ssl certificate: > kubectl create secret tls mynewsecret --key mynewkey.key --cert mynewcert.crt 2) edit ingress.yaml file in order to change the secretName: apiVersion: extensio

Re: [kubernetes-users] How to update ssl certificate for ingress https load balancer

2018-02-14 Thread
If you update the secret with the new cert, the GCP ingress controller should pick that up and update the certificate on GCP. I use this to automate certificate renewal using cert-manager . On Thu, Feb 15, 2018 at 2:06 AM wrote: > Hi, > I have to update