
Ultimate access to all questions.
You have two workloads on Google Kubernetes Engine (GKE): create-order and dispatch-order. The create-order workload manages customer order creation, while dispatch-order handles sending orders to your shipping partner. Both workloads have cluster autoscaling enabled. The create-order deployment needs to access the dispatch-order deployment's web service, but dispatch-order must not be exposed publicly. How should you define the services?
A
Define a Service of type NodePort for dispatch-order and an Ingress Resource for that Service. Configure create-order to use the Ingress IP address.
B
Define a Service of type LoadBalancer for dispatch-order and an Ingress Resource for that Service. Configure create-order to use the Ingress IP address.
C
Define a Service of type LoadBalancer for dispatch-order. Configure create-order to use the Service IP address.
D
Define a Service of type ClusterIP for dispatch-order. Configure create-order to use the Service IP address.