Home > Back-end >  GKE update SSL certificate from Google-managed to self-managed
GKE update SSL certificate from Google-managed to self-managed

Time:10-20

I'm trying to update the certificate of the Load balancer in GKE from Google-managed to self-managed.

I was following up on this docs to create Google-managed certificates, but I didn't find any docs for creating self-managed certificates. I am not sure how to do this. I would appreciate it if someone could tell me what should I do?

CodePudding user response:

Self-managed SSL certificates are certificates that you obtain, provision, and renew yourself. You can use this resource to secure communication between clients and your load balancer.

Make sure that you have the domain names that you want to use for your self-managed SSL certificate. If you're using Google Domains, see Step 1: Register a domain name using Google Domains.

Step 1: Create a private key and certificate

Step 2: Create a self-managed SSL certificate resource

Step 3: Associate an SSL certificate with a target proxy

Step 4: Update the DNS A and AAAA records to point to the load balancer's IP address

Step 5: Test with OpenSSL

After the certificate and domain statuses are active, it can take up to 30 minutes for your load balancer to begin using your self-managed SSL certificate.

For detailed information follow Use self-managed SSL certificates.

  • Related