Skip to content

Commit cf84e5b

Browse files
authored
Merge pull request #117893 from Greedygre/patch-2
[Containerapp] Change the hello-world image to mcr.microsoft.com/k8se/quickstart:latest
2 parents 6ae803e + fff0f7d commit cf84e5b

8 files changed

+13
-13
lines changed

articles/container-apps/azure-arc-create-container-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The following example creates a Node.js app.
9191
--name $myContainerApp \
9292
--environment $myConnectedEnvironment \
9393
--environment-type connected \
94-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
94+
--image mcr.microsoft.com/k8se/quickstart:latest \
9595
--target-port 80 \
9696
--ingress 'external'
9797

articles/container-apps/get-started-existing-container-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ New-AzContainerApp @ContainerAppArgs
195195

196196
---
197197

198-
Before you run this command, replace `<REGISTRY_CONTAINER_NAME>` with the full name the public container registry location, including the registry path and tag. For example, a valid container name is `mcr.microsoft.com/azuredocs/containerapps-helloworld:latest`.
198+
Before you run this command, replace `<REGISTRY_CONTAINER_NAME>` with the full name the public container registry location, including the registry path and tag. For example, a valid container name is `mcr.microsoft.com/k8se/quickstart:latest`.
199199

200200
::: zone-end
201201

articles/container-apps/get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ az containerapp up \
125125
--resource-group my-container-apps \
126126
--location centralus \
127127
--environment 'my-container-apps' \
128-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
128+
--image mcr.microsoft.com/k8se/quickstart:latest \
129129
--target-port 80 \
130130
--ingress external \
131131
--query properties.configuration.ingress.fqdn
@@ -139,7 +139,7 @@ az containerapp up `
139139
--resource-group my-container-apps `
140140
--location centralus `
141141
--environment my-container-apps `
142-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest `
142+
--image mcr.microsoft.com/k8se/quickstart:latest `
143143
--target-port 80 `
144144
--ingress external `
145145
--query properties.configuration.ingress.fqdn

articles/container-apps/managed-identity-image-pull.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ az containerapp create \
552552
--name $CONTAINERAPP_NAME \
553553
--resource-group $RESOURCE_GROUP \
554554
--environment $CONTAINERAPPS_ENVIRONMENT \
555-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
555+
--image mcr.microsoft.com/k8se/quickstart:latest \
556556
--target-port 80 \
557557
--ingress external
558558
```
@@ -562,7 +562,7 @@ az containerapp create \
562562
```powershell
563563
$ImageParams = @{
564564
Name = "my-container-app"
565-
Image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
565+
Image = "mcr.microsoft.com/k8se/quickstart:latest"
566566
}
567567
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
568568
$EnvId = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvironment -ResourceGroupName $ResourceGroupName).Id

articles/container-apps/revisions-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Replace the \<Placeholders\> with your values.
4242
```azurepowershell
4343
$ImageParams = @{
4444
Name = '<ContainerName>'
45-
Image = 'mcr.microsoft.com/azuredocs/containerapps-helloworld:latest'
45+
Image = 'mcr.microsoft.com/k8se/quickstart'
4646
}
4747
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
4848

articles/container-apps/tutorial-deploy-first-app-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ az containerapp create \
8585
--name my-container-app \
8686
--resource-group $RESOURCE_GROUP \
8787
--environment $CONTAINERAPPS_ENVIRONMENT \
88-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
88+
--image mcr.microsoft.com/k8se/quickstart:latest \
8989
--target-port 80 \
9090
--ingress 'external' \
9191
--query properties.configuration.ingress.fqdn
@@ -101,7 +101,7 @@ By setting `--ingress` to `external`, you make the container app available to pu
101101
```azurepowershell
102102
$ImageParams = @{
103103
Name = 'my-container-app'
104-
Image = 'mcr.microsoft.com/azuredocs/containerapps-helloworld:latest'
104+
Image = 'mcr.microsoft.com/k8se/quickstart:latest'
105105
}
106106
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
107107
$EnvId = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvironment -ResourceGroupName $ResourceGroupName).Id

articles/container-apps/tutorial-scaling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ az containerapp up \
120120
--resource-group my-container-apps \
121121
--location centralus \
122122
--environment 'my-container-apps' \
123-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
123+
--image mcr.microsoft.com/k8se/quickstart:latest \
124124
--target-port 80 \
125125
--ingress external \
126126
--query properties.configuration.ingress.fqdn \
@@ -134,7 +134,7 @@ az containerapp up `
134134
--resource-group my-container-apps `
135135
--location centralus `
136136
--environment my-container-apps `
137-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest `
137+
--image mcr.microsoft.com/k8se/quickstart:latest `
138138
--target-port 80 `
139139
--ingress external `
140140
--query properties.configuration.ingress.fqdn `

articles/container-apps/workload-profiles-manage-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Use the following commands to create a workload profiles environment.
152152
--name "<CONTAINER_APP_NAME>" \
153153
--target-port 80 \
154154
--ingress external \
155-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
155+
--image mcr.microsoft.com/k8se/quickstart:latest \
156156
--environment "<ENVIRONMENT_NAME>" \
157157
--workload-profile-name "Consumption"
158158
```
@@ -165,7 +165,7 @@ Use the following commands to create a workload profiles environment.
165165
--name "<CONTAINER_APP_NAME>" \
166166
--target-port 80 \
167167
--ingress internal \
168-
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
168+
--image mcr.microsoft.com/k8se/quickstart:latest \
169169
--environment "<ENVIRONMENT_NAME>" \
170170
--workload-profile-name "Consumption"
171171
```

0 commit comments

Comments
 (0)