Skip to content

Commit e9cf32c

Browse files
committed
Create ingress controller - addressing GH issues
1 parent 1e9363b commit e9cf32c

File tree

1 file changed

+6
-20
lines changed

1 file changed

+6
-20
lines changed

articles/aks/ingress-basic.md

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,18 @@ This article shows you how to deploy the [NGINX ingress controller][nginx-ingres
2020
2121
## Before you begin
2222

23-
This article uses [Helm 3][helm] to install the NGINX ingress controller on a [supported version of Kubernetes][aks-supported versions]. Make sure that you're using the latest release of Helm and have access to the *ingress-nginx* Helm repository. The steps outlined in this article may not be compatible with previous versions of the Helm chart, NGINX ingress controller, or Kubernetes.
24-
25-
### [Azure CLI](#tab/azure-cli)
26-
27-
This article also requires that you're running the Azure CLI version 2.0.64 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
28-
29-
In addition, this article assumes you have an existing AKS cluster with an integrated Azure Container Registry (ACR). For more information on creating an AKS cluster with an integrated ACR, see [Authenticate with Azure Container Registry from Azure Kubernetes Service][aks-integrated-acr].
30-
31-
### [Azure PowerShell](#tab/azure-powershell)
32-
33-
This article also requires that you're running Azure PowerShell version 5.9.0 or later. Run `Get-InstalledModule -Name Az` to find the version. If you need to install or upgrade, see [Install Azure PowerShell][azure-powershell-install].
34-
35-
In addition, this article assumes you have an existing AKS cluster with an integrated Azure Container Registry (ACR). For more information on creating an AKS cluster with an integrated ACR, see [Authenticate with Azure Container Registry from Azure Kubernetes Service][aks-integrated-acr-ps].
36-
37-
---
23+
* This article uses [Helm 3][helm] to install the NGINX ingress controller on a [supported version of Kubernetes][aks-supported versions]. Make sure that you're using the latest release of Helm and have access to the *ingress-nginx* Helm repository. The steps outlined in this article may not be compatible with previous versions of the Helm chart, NGINX ingress controller, or Kubernetes.
24+
* This article assumes you have an existing AKS cluster with an integrated Azure Container Registry (ACR). For more information on creating an AKS cluster with an integrated ACR, see [Authenticate with Azure Container Registry from Azure Kubernetes Service][aks-integrated-acr-ps].
25+
* The Kubernetes API health endpoint, `healthz` was deprecated in Kubernetes v1.16. You can replace this endpoint with the `livez` and `readyz` endpoints instead. See [Kubernetes API endpoints for health](https://kubernetes.io/docs/reference/using-api/health-checks/#api-endpoints-for-health) to determine which endpoint to use for your scenario.
26+
* If you're using Azure CLI, this article requires that you're running the Azure CLI version 2.0.64 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
27+
* If you're using Azure PowerShell, this article requires that you're running Azure PowerShell version 5.9.0 or later. Run `Get-InstalledModule -Name Az` to find the version. If you need to install or upgrade, see [Install Azure PowerShell][azure-powershell-install].
3828

3929
## Basic configuration
4030

41-
To create a basic NGINX ingress controller without customizing the defaults, you'll use Helm.
31+
To create a basic NGINX ingress controller without customizing the defaults, you'll use Helm. The following configuration uses the default configuration for simplicity. You can add parameters for customizing the deployment, like `--set controller.replicaCount=3`.
4232

4333
### [Azure CLI](#tab/azure-cli)
4434

45-
The following configuration uses the default configuration for simplicity. You can add parameters for customizing the deployment, for example: `--set controller.replicaCount=3`.
46-
4735
```console
4836
NAMESPACE=ingress-basic
4937

@@ -58,8 +46,6 @@ helm install ingress-nginx ingress-nginx/ingress-nginx \
5846

5947
### [Azure PowerShell](#tab/azure-powershell)
6048

61-
The following configuration uses the default configuration for simplicity. You can add parameters for customizing the deployment, for example: `--set controller.replicaCount=3`.
62-
6349
```powershell-interactive
6450
$Namespace = 'ingress-basic'
6551

0 commit comments

Comments
 (0)