Skip to content

Commit 922f9b9

Browse files
committed
fixed links
1 parent 4655e41 commit 922f9b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-cache-for-redis/cache-tutorial-aks-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Next, set up the AKS workload to connect to Azure Cache for Redis after you conf
5050

5151
1. Download the code for the [sample app](https://github.com/Azure-Samples/azure-cache-redis-sample/connect-from-aks).
5252

53-
1. Build and push docker image to your Azure Container Registry using [az acr build](/azure/acr?view=azure-cli-latest.md#az-acr-build) command
53+
1. Build and push docker image to your Azure Container Registry using [az acr build](/cli/azure/acr#az-acr-build) command.
5454

5555
```bash
5656
az acr build --image sample/connect-from-aks-sample:1.0 --registry yourcontainerregistry --file Dockerfile .
@@ -103,7 +103,7 @@ If you use Azure Cloud Shell, _kubectl_ is already installed, and you can skip t
103103

104104
1. The following code describes the pod specification file that you use to run our workload. Take note that the pod has the label _azure.workloadidentity/use: "true"_ and is annotated with _serviceAccountName_ as required by AKS workload identity. Replace the value of CONNECTION_STRING, CACHE_NAME and USER_ASSIGNED_PRINCIPAL_ID environment variables that correspond with your cache and managed identity.
105105

106-
```YAML
106+
```yml
107107
apiVersion: v1
108108
kind: Pod
109109
metadata:
@@ -133,7 +133,7 @@ If you use Azure Cloud Shell, _kubectl_ is already installed, and you can skip t
133133
value: "your cache name"
134134
restartPolicy: Never
135135
136-
```
136+
```
137137

138138
1. Save this file as podspec.yaml and then apply it to your AKS cluster by running the folloWing command:
139139

0 commit comments

Comments
 (0)