Topic 1 Question 70
Your application is deployed in a Google Kubernetes Engine (GKE) cluster. You want to expose this application publicly behind a Cloud Load Balancing HTTP(S) load balancer. What should you do?
Configure a GKE Ingress resource.
Configure a GKE Service resource.
Configure a GKE Ingress resource with type: LoadBalancer.
Configure a GKE Service resource with type: LoadBalancer.
ユーザの投票
コメント(10)
- 👍 7donchick2020/12/21
A) The important part of the question is this "...expose this application publicly behind a Cloud Load Balancing HTTP(S) load balancer." This means it is an L7 exposure using HTTPS (a Service of type "LoadBalancer" would only create an L4 exposure - IP only... No HTTPS).
So Ingress is the choice you should make. And in GKE, luckily this is one thing - create an ingress and the LB will be attached automagically ;D
👍 5Valant2021/11/01(D) is not correct as service with type LoadBalancer create network load balancer not http load balancer. (A) is correct ingress will create http balancer without the need of specify type https://cloud.google.com/kubernetes-engine/docs/concepts/ingress#overview
👍 4[Removed]2021/07/16
シャッフルモード