Skip to content

Commit eb5fb9e

Browse files
committed
fix: update image source and registry URL to use pauldotyu org
1 parent abb335f commit eb5fb9e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

azd-hooks/postprovision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ elif [ "$DEPLOY_AZURE_CONTAINER_REGISTRY" == "true" ] && ([ -z "$BUILD_CONTAINER
1212
echo "Import container images"
1313
for service in "${services[@]}"; do
1414
echo "Importing aks-store-demo/${service}:latest"
15-
az acr import --name ${AZURE_REGISTRY_NAME} --source ghcr.io/azure-samples/aks-store-demo/${service}:latest --image aks-store-demo/${service}:latest
15+
az acr import --name ${AZURE_REGISTRY_NAME} --source ghcr.io/pauldotyu/aks-store-demo/${service}:latest --image aks-store-demo/${service}:latest
1616
done
1717
else
1818
echo "No BUILD_CONTAINERS variable set, skipping container build/import"

azure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ services:
6161
helm:
6262
repositories:
6363
- name: aks-store-demo
64-
url: https://azure-samples.github.io/aks-store-demo
64+
url: https://pauldotyu.github.io/aks-store-demo
6565
releases:
6666
- name: demo
6767
chart: aks-store-demo/aks-store-demo-chart

infra/terraform/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ output "AZURE_REGISTRY_NAME" {
7676
}
7777

7878
output "AZURE_REGISTRY_URI" {
79-
value = local.deploy_azure_container_registry ? module.acr[0].resource.login_server : "ghcr.io/azure-samples"
79+
value = local.deploy_azure_container_registry ? module.acr[0].resource.login_server : "ghcr.io/pauldotyu"
8080
}
8181

8282
output "AZURE_TENANT_ID" {

0 commit comments

Comments
 (0)