Skip to content

Commit faa6b2d

Browse files
author
Sarath chandra Bussa
committed
fix: Default ACR SDK registry to oryxacr.azurecr.io
Use the same ACR that AAPT-Antares-Oryx publishes SDK images to. Updated both C# constant and Go constant.
1 parent b38884d commit faa6b2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/BuildScriptGenerator.Common/SdkStorageConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static class SdkStorageConstants
2525
// ACR-based SDK distribution constants
2626
public const string EnableAcrSdkProviderKey = "ORYX_ENABLE_ACR_SDK_PROVIDER";
2727
public const string AcrSdkRegistryUrlKeyName = "ORYX_ACR_SDK_REGISTRY_URL";
28-
public const string DefaultAcrSdkRegistryUrl = "https://oryxsdks.azurecr.io";
28+
public const string DefaultAcrSdkRegistryUrl = "https://oryxacr.azurecr.io";
2929
public const string AcrSdkRepositoryPrefix = "sdks";
3030
public const string AcrDefaultVersionTag = "default";
3131
public const string AcrCatalogTag = "catalog";

src/startupscriptgenerator/src/common/consts/sdk_storage_constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ const OsTypeMetadataName string = "Os_type"
2222
// ACR-based SDK distribution constants
2323
const EnableAcrSdkProviderKey string = "ORYX_ENABLE_ACR_SDK_PROVIDER"
2424
const AcrSdkRegistryUrlKeyName string = "ORYX_ACR_SDK_REGISTRY_URL"
25-
const DefaultAcrSdkRegistryUrl string = "https://oryxsdks.azurecr.io"
25+
const DefaultAcrSdkRegistryUrl string = "https://oryxacr.azurecr.io"
2626
const AcrSdkRepositoryPrefix string = "sdks"

0 commit comments

Comments
 (0)