Valid 1Z0-1084-20 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-1084-20 Exam! ExamDiscuss.com now offer the newest 1Z0-1084-20 exam dumps, the ExamDiscuss.com 1Z0-1084-20 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-1084-20 dumps with Test Engine here:
Given a service deployed on Oracle Cloud infrastructure Container Engine for Kubernetes (OKE), which annotation should you add in the sample manifest file to specify a 400 Mbps load balancer?
Correct Answer: C
Explanation The shape of an Oracle Cloud Infrastructure load balancer specifies its maximum total bandwidth (that is, ingress plus egress). By default, load balancers are created with a shape of 100Mbps. Other shapes are available, including 400Mbps and 8000Mbps. To specify an alternative shape for a load balancer, add the following annotation in the metadata section of the manifest file: service.beta.kubernetes.io/oci-load-balancer-shape: <value> where value is the bandwidth of the shape (for example, 100Mbps, 400Mbps, 8000Mbps). For example: apiVersion: v1 kind: Service metadata: name: my-nginx-svc labels: app: nginx annotations: service.beta.kubernetes.io/oci-load-balancer-shape: 400Mbps spec: type: LoadBalancer ports: - port: 80 selector: app: nginx