Azure Kubernetes Service (AKS) を使用してコンテナーを実行するポッドをホストするマイクロサービス アーキテクチャを設計しています。各ポッド デプロイは個別の API をホストします 各 API は個別のサービスとして実装されます - Azure API Management から外部ユーザーが API を使用できるようにするソリューションを推奨する必要があります。ソリューションは、次の要件を満たす必要があります。 * API Management と AKS ベースの API 間の相互 US 認証を使用して、API へのアクセスを制御します。 * 単一の IP アドレスを使用して API へのアクセスを提供します。 API へのアクセスを提供するには、何を推奨しますか?
正解:C
An ingress controller is a piece of software that provides reverse proxy, configurable traffic routing, and TLS termination for Kubernetes services. Kubernetes ingress resources are used to configure the ingress rules and routes for individual Kubernetes services. Using an ingress controller and ingress rules, a single IP address can be used to route traffic to multiple services in a Kubernetes cluster.