Skip to content

Commit 296876d

Browse files
author
Miao Jiang
committed
updated per pre-review feedback
1 parent 2a2e8a2 commit 296876d

5 files changed

+9
-9
lines changed

articles/api-management/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@
103103
- name: Provision a self-hosted gateway
104104
href: api-management-howto-provision-self-hosted-gateway.md
105105
- name: Deploy a self-hosted gateway to Azure Kubernetes Service
106-
href: api-management-howto-deploy-self-hosted-gateway-to-aks.md
106+
href: how-to-deploy-self-hosted-gateway-azure-kubernetes-service.md
107107
- name: Deploy a self-hosted gateway to Kubernetes
108-
href: api-management-howto-deploy-self-hosted-gateway-to-k8s.md
108+
href: how-to-deploy-self-hosted-gateway-kubernetes.md
109109
- name: Deploy a self-hosted gateway to Docker
110110
href: api-management-howto-deploy-self-hosted-gateway-to-docker.md
111111
- name: Configure custom domain for self-hosted gateway
@@ -221,9 +221,9 @@
221221
- name: Log requests with Azure Application Insights
222222
href: api-management-howto-app-insights.md
223223
- name: Configure cloud metrics and logs for self-hosted gateway
224-
href: api-management-howto-configure-cloud-metrics-and-logs.md
224+
href: how-to-configure-cloud-metrics-logs.md
225225
- name: Configure local metrics and logs for self-hosted gateway
226-
href: api-management-howto-configure-local-metrics-and-logs.md
226+
href: how-to-configure-local-metrics-logs.md
227227
- name: Log requests with Azure Application Insights
228228
href: api-management-howto-app-insights.md
229229
- name: Set up DR using backup/restore

articles/api-management/api-management-howto-deploy-self-hosted-gateway-to-aks.md renamed to articles/api-management/how-to-deploy-self-hosted-gateway-azure-kubernetes-service.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.author: apimpm
1818

1919
# Deploy a self-hosted Azure API Management gateway to Azure Kubernetes Service
2020

21-
This article provides the steps for deploying self-hosted Azure API Management gateway into an [Azure Kubernetes Service](https://azure.microsoft.com/services/kubernetes-service/) Cluster. For deploying self-hosted gateway to other Kubernetes clusters (e.g., clusters in a foreign cloud), see [deploy self-hosted gateway to Kubernetes](api-management-howto-deploy-self-hosted-gateway-to-k8s.md).
21+
This article provides the steps for deploying self-hosted Azure API Management gateway into an [Azure Kubernetes Service](https://azure.microsoft.com/services/kubernetes-service/) (AKS) Cluster. For deploying self-hosted gateway to other Kubernetes clusters (e.g., clusters in a foreign cloud), see [deploy self-hosted gateway to Kubernetes](api-management-howto-deploy-self-hosted-gateway-to-k8s.md).
2222

2323
## Prerequisites
2424

@@ -41,20 +41,20 @@ This article provides the steps for deploying self-hosted Azure API Management g
4141
```console
4242
kubectl apply -f <gateway-name>.yaml
4343
```
44-
10. Execute the command. The command instructs your AKS cluster to run the container, using self-hosted gateway's image downloaded from the Microsoft Container Registry, and to configure the container to expose HTTP (8080) and HTTPS (443) ports.
45-
11. Run the below command to check the gateway pod is running. Note that your pod name will be different.
44+
11. Execute the command. The command instructs your AKS cluster to run the container, using self-hosted gateway's image downloaded from the Microsoft Container Registry, and to configure the container to expose HTTP (8080) and HTTPS (443) ports.
45+
12. Run the below command to check the gateway pod is running. Note that your pod name will be different.
4646
```console
4747
kubectl get pods
4848
NAME READY STATUS RESTARTS AGE
4949
contoso-apim-gateway-59f5fb94c-s9stz 1/1 Running 0 1m
5050
```
51-
12. Run the below command to check the gateway service is running. Note that your service name and IP addresses will be different.
51+
13. Run the below command to check the gateway service is running. Note that your service name and IP addresses will be different.
5252
```console
5353
kubectl get services
5454
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
5555
contosogateway NodePort 10.110.230.87 <none> 80:32504/TCP,443:30043/TCP 1m
5656
```
57-
13. Go back to the Azure portal and confirm that gateway node you just deployed is reporting healthy status.
57+
14. Go back to the Azure portal and confirm that gateway node you just deployed is reporting healthy status.
5858

5959
> [!TIP]
6060
> Use <code>kubectl logs <gateway-pod-name></code> command to view a snapshot of self-hosted gateway log.

0 commit comments

Comments
 (0)