Oracle CloudインフラストラクチャContainer Engine for Kubernetes(OKE)にデプロイされたサービスがある場合、400 Mbpsのロードバランサーを指定するには、サンプルマニフェストファイルにどのアノテーションを追加する必要がありますか?
正解:C
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 https://github.com/oracle/oci-cloud-controller-manager/blob/master/docs/load-balancer-annotations.md