Skip to content

Commit 73da377

Browse files
committed
Change the biceps to test deploy
1 parent 84a5581 commit 73da377

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

infra/main.bicep

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,32 +110,34 @@ param virtualMachineAdminUsername string = take(newGuid(), 20)
110110
@secure()
111111
param virtualMachineAdminPassword string = newGuid()
112112

113+
// These parameters are changed for testing - please reset as part of publication
114+
113115
@description('Optional. The Container Registry hostname where the docker images for the backend are located.')
114-
param backendContainerRegistryHostname string = 'biabcontainerreg.azurecr.io'
116+
param backendContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
115117

116118
@description('Optional. The Container Image Name to deploy on the backend.')
117119
param backendContainerImageName string = 'macaebackend'
118120

119121
@description('Optional. The Container Image Tag to deploy on the backend.')
120-
param backendContainerImageTag string = 'latest_2025-07-22_895'
122+
param backendContainerImageTag string = 'v3tst1'
121123

122124
@description('Optional. The Container Registry hostname where the docker images for the frontend are located.')
123-
param frontendContainerRegistryHostname string = 'biabcontainerreg.azurecr.io'
125+
param frontendContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
124126

125127
@description('Optional. The Container Image Name to deploy on the frontend.')
126128
param frontendContainerImageName string = 'macaefrontend'
127129

128130
@description('Optional. The Container Image Tag to deploy on the frontend.')
129-
param frontendContainerImageTag string = 'latest_2025-07-22_895'
131+
param frontendContainerImageTag string = 'v3tst1'
130132

131133
@description('Optional. The Container Registry hostname where the docker images for the MCP are located.')
132-
param MCPContainerRegistryHostname string = 'macaemcpacrdk.azurecr.io'
134+
param MCPContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
133135

134136
@description('Optional. The Container Image Name to deploy on the MCP.')
135-
param MCPContainerImageName string = 'macae-mac-app'
137+
param MCPContainerImageName string = 'mcp_server'
136138

137139
@description('Optional. The Container Image Tag to deploy on the MCP.')
138-
param MCPContainerImageTag string = 't9'
140+
param MCPContainerImageTag string = 'v3tst1'
139141

140142
@description('Optional. Enable/Disable usage telemetry for module.')
141143
param enableTelemetry bool = true

infra/main_custom.bicep

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,32 +110,34 @@ param virtualMachineAdminUsername string = take(newGuid(), 20)
110110
@secure()
111111
param virtualMachineAdminPassword string = newGuid()
112112

113+
// These parameters are changed for testing - please reset as part of publication
114+
113115
@description('Optional. The Container Registry hostname where the docker images for the backend are located.')
114-
param backendContainerRegistryHostname string = 'biabcontainerreg.azurecr.io'
116+
param backendContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
115117

116118
@description('Optional. The Container Image Name to deploy on the backend.')
117119
param backendContainerImageName string = 'macaebackend'
118120

119121
@description('Optional. The Container Image Tag to deploy on the backend.')
120-
param backendContainerImageTag string = 'latest_2025-07-22_895'
122+
param backendContainerImageTag string = 'v3tst1'
121123

122124
@description('Optional. The Container Registry hostname where the docker images for the frontend are located.')
123-
param frontendContainerRegistryHostname string = 'biabcontainerreg.azurecr.io'
125+
param frontendContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
124126

125127
@description('Optional. The Container Image Name to deploy on the frontend.')
126128
param frontendContainerImageName string = 'macaefrontend'
127129

128130
@description('Optional. The Container Image Tag to deploy on the frontend.')
129-
param frontendContainerImageTag string = 'latest_2025-07-22_895'
131+
param frontendContainerImageTag string = 'v3tst1'
130132

131133
@description('Optional. The Container Registry hostname where the docker images for the MCP are located.')
132-
param MCPContainerRegistryHostname string = 'macaemcpacrdk.azurecr.io'
134+
param MCPContainerRegistryHostname string = 'macaev3tst1acr.azurecr.io'
133135

134136
@description('Optional. The Container Image Name to deploy on the MCP.')
135-
param MCPContainerImageName string = 'macae-mac-app'
137+
param MCPContainerImageName string = 'mcp_server'
136138

137139
@description('Optional. The Container Image Tag to deploy on the MCP.')
138-
param MCPContainerImageTag string = 't9'
140+
param MCPContainerImageTag string = 'v3tst1'
139141

140142
@description('Optional. Enable/Disable usage telemetry for module.')
141143
param enableTelemetry bool = true

0 commit comments

Comments
 (0)