You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/ingress-tls.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,9 +154,9 @@ When you upgrade your ingress controller, you must pass a parameter to the Helm
154
154
> * The cluster identity used by the AKS cluster has delegated permissions to the resource group, such as *Network Contributor*.
155
155
> * Add the `--set controller.service.annotations."service\.beta\.kubernetes\.io/azure-load-balancer-resource-group"="<RESOURCE_GROUP>"` parameter. Replace `<RESOURCE_GROUP>` with the name of the resource group where the IP address resides.
156
156
157
-
3. Add the --set controller.service.annotations."service\.beta\.kubernetes\.io/azure-dns-label-name"="<DNS_LABEL>" parameter. The DNS label can be set either when the ingress controller is first deployed, or it can be configured later.
157
+
3. Add the `--set controller.service.annotations."service\.beta\.kubernetes\.io/azure-dns-label-name"="<DNS_LABEL>"` parameter. The DNS label can be set either when the ingress controller is first deployed, or it can be configured later.
158
158
159
-
4. Add the --set controller.service.loadBalancerIP="<STATIC_IP>" parameter. Specify your own public IP address that was created in the previous step.
159
+
4. Add the `--set controller.service.loadBalancerIP="<STATIC_IP>"` parameter. Specify your own public IP address that was created in the previous step.
160
160
161
161
```azurepowershell-interactive
162
162
$DnsLabel = "<DNS_LABEL>"
@@ -175,20 +175,20 @@ For more information, see [Use a static public IP address and DNS label with the
175
175
176
176
#### Use a dynamic public IP address
177
177
178
-
An Azure public IP address is created for your ingress controller upon creation. The public IP address is static for the lifespan of your ingress controller. The public IP address *doesn't* remain if you delete your ingress controller. If you create a new ingress controller, it will be assigned a new public IP address.
178
+
An Azure public IP address is created for your ingress controller upon creation. The public IP address is static for the lifespan of your ingress controller. The public IP address *doesn't* remain if you delete your ingress controller. If you create a new ingress controller, it will be assigned a new public IP address. Your output should look similar to the following sample output.
179
179
180
180
* Use the `kubectl get service` command to get the public IP address for your ingress controller.
181
181
182
182
```console
183
+
# Get the public IP address for your ingress controller
184
+
183
185
kubectl --namespace ingress-basic get services -o wide -w nginx-ingress-ingress-nginx-controller
184
-
```
185
186
186
-
Your output should look similar to the following example output:
187
+
# Sample output
187
188
188
-
```console
189
-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
0 commit comments