Skip to content

Commit 4fd7422

Browse files
committed
minor fixes. done with editing
1 parent ba1a8b0 commit 4fd7422

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

articles/application-gateway/for-containers/alb-controller-helm-chart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tolerations:
6161
effect: "NoSchedule"
6262
```
6363
64-
If desired, you can specify the toleration inline via helm install command via the following example:
64+
If desired, you can specify the toleration inline via the helm install command using the following example:
6565
6666
```bash
6767
HELM_NAMESPACE='<namespace for deployment>'

articles/application-gateway/for-containers/quickstart-deploy-application-gateway-for-containers-alb-controller.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ You need to complete the following tasks before deploying Application Gateway fo
125125
--issuer "$AKS_OIDC_ISSUER" \
126126
--subject "system:serviceaccount:azure-alb-system:alb-controller-sa"
127127
```
128-
ALB Controller requires a federated credential with the name of _azure-alb-identity_. Any other federated credential name is unsupported.
128+
ALB Controller requires a federated credential with the name of `azure-alb-identity`. Any other federated credential name is unsupported.
129129
130130
> [!Note]
131131
> Assignment of the managed identity immediately after creation may result in an error that the principalId does not exist. Allow about a minute of time to elapse for the identity to replicate in Microsoft Entra ID before delegating the identity.
@@ -136,7 +136,7 @@ You need to complete the following tasks before deploying Application Gateway fo
136136
137137
To install ALB Controller, use the `helm install` command.
138138
139-
When the `helm install` command is run, it deploys the helm chart to the _default_ namespace. When alb-controller is deployed, it deploys to the _azure-alb-system_ namespace. Both of these namespaces may be overridden independently as desired. To override the namespace the helm chart is deployed to, you may specify the --namespace (or -n) parameter. To override the _azure-alb-system_ namespace used by alb-controller, you may set the albController.namespace property during installation (`--set albController.namespace`). If neither the `--namespace` or the `--set albController.namespace` parameters are defined, the _default_ namespace is used for the helm chart and the _azure-alb-system_ namespace is used for the ALB controller components. Lastly, if the namespace for the helm chart resource isn't yet defined, ensure the `--create-namespace` parameter is also specified along with the `--namespace` or `-n` parameters.
139+
When the `helm install` command is run, it deploys the helm chart to the _default_ namespace. When alb-controller is deployed, it deploys to the `azure-alb-system` namespace. Both of these namespaces may be overridden independently as desired. To override the namespace the helm chart is deployed to, you may specify the --namespace (or -n) parameter. To override the `azure-alb-system` namespace used by alb-controller, you may set the albController.namespace property during installation (`--set albController.namespace`). If neither the `--namespace` or the `--set albController.namespace` parameters are defined, the _default_ namespace is used for the helm chart and the `azure-alb-system` namespace is used for the ALB controller components. Lastly, if the namespace for the helm chart resource isn't yet defined, ensure the `--create-namespace` parameter is also specified along with the `--namespace` or `-n` parameters.
140140
141141
ALB Controller can be installed by running the following commands:
142142
@@ -220,27 +220,27 @@ The next step is to link your ALB controller to Application Gateway for Containe
220220
221221
There are two deployment strategies for management of Application Gateway for Containers:
222222
- **Bring your own (BYO) deployment:** In this deployment strategy, deployment and lifecycle of the Application Gateway for Containers resource, Association resource, and Frontend resource is assumed via Azure portal, CLI, PowerShell, Terraform, etc. and referenced in configuration within Kubernetes.
223-
- To use a BYO deployment, see [Create Application Gateway for Containers - bring your own deployment](quickstart-create-application-gateway-for-containers-byo-deployment.md)
223+
- To use a BYO deployment, see [Create Application Gateway for Containers - bring your own deployment](quickstart-create-application-gateway-for-containers-byo-deployment.md).
224224
- **Managed by ALB controller:** In this deployment strategy, ALB Controller deployed in Kubernetes is responsible for the lifecycle of the Application Gateway for Containers resource and its sub resources. ALB Controller creates an Application Gateway for Containers resource when an **ApplicationLoadBalancer** custom resource is defined on the cluster. The service lifecycle is based on the lifecycle of the custom resource.
225-
- To use an ALB managed deployment, see [Create Application Gateway for Containers managed by ALB Controller](quickstart-create-application-gateway-for-containers-managed-by-alb-controller.md)
225+
- To use an ALB managed deployment, see [Create Application Gateway for Containers managed by ALB Controller](quickstart-create-application-gateway-for-containers-managed-by-alb-controller.md).
226226
227227
## Uninstall Application Gateway for Containers and ALB Controller
228228
229229
If you wish to uninstall the ALB Controller, complete the following steps.
230230
231231
1. Delete the Application Gateway for Containers, you can delete the Resource Group containing the Application Gateway for Containers resources:
232232
233-
```azurecli-interactive
234-
az group delete --resource-group $RESOURCE_GROUP
235-
```
233+
```azurecli-interactive
234+
az group delete --resource-group $RESOURCE_GROUP
235+
```
236236

237237
2. Uninstall ALB Controller and its resources from your cluster run the following commands:
238238

239-
```azurecli-interactive
240-
helm uninstall alb-controller
241-
kubectl delete ns azure-alb-system
242-
kubectl delete gatewayclass azure-alb-external
243-
```
239+
```azurecli-interactive
240+
helm uninstall alb-controller
241+
kubectl delete ns azure-alb-system
242+
kubectl delete gatewayclass azure-alb-external
243+
```
244244

245245
> [!Note]
246246
> If a different namespace was used for alb-controller installation, ensure you specify the -n parameter on the helm uninstall command to define the proper namespace to be used. For example: `helm uninstall alb-controller -n unique-namespace`

0 commit comments

Comments
 (0)