アプリケーションをAzureKubernetes Service(AKS)クラスターにデプロイする準備をしています。
アプリケーションは、クラスターを含むVNet内からのみ使用可能である必要があります。
アプリケーションをデプロイする必要があります。
YAMLのデプロイをどのように完了する必要がありますか?答えるには、適切なYAMLセグメントを正しい場所にドラッグします。各YAMLセグメントは、1回使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、分割バーをペイン間でドラッグするか、スクロールする必要がある場合があります。
注:正しい選択はそれぞれ1ポイントの価値があります。

正解:

Explanation:

To create an internal load balancer, create a service manifest named internal-lb.yaml with the service type LoadBalancer and the azure-load-balancer-internal annotation as shown in the following example:
YAML:
apiVersion: v1
kind: Service
metadata:
name: internal-app
annotations:
service.beta.kubernetes.io/azure-load-balancer-internal: "true"
spec:
type: LoadBalancer
ports:
- port: 80
selector:
app: internal-app
References:
https://docs.microsoft.com/en-us/azure/aks/internal-lb