How to create a CDN for Google for GKE

I have deployed the wordpress site on GKE (kubernetes) and I can access my site from the Internet, like this mysite.test.com, and it works like a charm. Now I want to use Google CDN to speed up access. I tried to use the Ingress resource, but I would like to do this using the "Load Balancing" tab on the "Network" tab in the Google console. What steps should I take?

+4
source share
1 answer

I just wrote a post about using Google CDN with Kubernetes:

https://medium.com/@chees/code-cooking-kubernetes-e715728a578c

Important parts:

  • Use a service with --type = NodePort
  • --enable-cdn backend- ( network console.cloud.google.com)
+5

Source: https://habr.com/ru/post/1655005/


All Articles