Skip to content

Commit 4df6746

Browse files
committed
More edits to the doc to clarify FQDN/DNS label information:
1 parent 5f87b81 commit 4df6746

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/aks/ingress-tls.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ When you upgrade your ingress controller, you must pass a parameter to the Helm
154154
> * The cluster identity used by the AKS cluster has delegated permissions to the resource group, such as *Network Contributor*.
155155
> * 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.
156156
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.
158158
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.
160160
161161
```azurepowershell-interactive
162162
$DnsLabel = "<DNS_LABEL>"
@@ -175,20 +175,20 @@ For more information, see [Use a static public IP address and DNS label with the
175175
176176
#### Use a dynamic public IP address
177177
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.
179179
180180
* Use the `kubectl get service` command to get the public IP address for your ingress controller.
181181
182182
```console
183+
# Get the public IP address for your ingress controller
184+
183185
kubectl --namespace ingress-basic get services -o wide -w nginx-ingress-ingress-nginx-controller
184-
```
185186
186-
Your output should look similar to the following example output:
187+
# Sample output
187188
188-
```console
189-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
190-
nginx-ingress-ingress-nginx-controller LoadBalancer 10.0.74.133 EXTERNAL_IP 80:32486/TCP,443:30953/TCP 44s app.kubernetes.io/component=controller,app.kubernetes.io/instance=nginx-ingress,app.kubernetes.io/name=ingress-nginx
191-
```
189+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
190+
nginx-ingress-ingress-nginx-controller LoadBalancer 10.0.74.133 EXTERNAL_IP 80:32486/TCP,443:30953/TCP 44s app.kubernetes.io/component=controller,app.kubernetes.io/instance=nginx-ingress,app.kubernetes.io/name=ingress-nginx
191+
```
192192
193193
### Add an A record to your DNS zone
194194

0 commit comments

Comments
 (0)