Location, RH 69, FRANCE
jpl@it-dust.net

Tag: kubernetes

Install cert-manager in a GKE cluster to use with let’s Encrypt

Cert-manager automates the management and issuance of TLS certificates from various issuing sources. It extends Kubernetes with a Custom Resource. You may use it with Let’s encrypt which is a free issuer. 1 – Installation Installing cert-manager There is currently an issue with GKE and the v0.6.5 version of cert-manager. It has been fixed in…
Read more

Bind a domain name to a GKE service with Google Cloud DNS

Identify the external IP address with kubectl: Choose the service to expose and get its external ip address. If it’s not already done, enable the DNS API for the project containing your cluster here. Then create a new zone for your domain, if it’s not existing yet: Let us say one want to bind a…
Read more

Add a kubectl config entry for a cluster in Google Cloud

With the gcloud SDK one can add a cluster configuration int the kubectl config with the following command: If you’re already authenticated with gcloud against the right project and the right zone, the following command is good enough: At this point the current context is set to the target cluster and one can get cluster…
Read more