File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
articles/spring-apps/migration Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,20 +96,20 @@ Use the following commands to test with the label-specific fully qualified domai
96
96
# Get the containerapp environment default domain
97
97
export APP_NAME=<app-name>
98
98
99
- export APP_ENV_DOMAIN =$(az containerapp env show \
99
+ export APP_ENVIRONMENT_DOMAIN =$(az containerapp env show \
100
100
--resource-group <resource-group> \
101
101
--name <app-environment-name> \
102
102
--query "properties.defaultDomain" \
103
103
--output tsv)
104
104
105
105
# Test the production FQDN
106
- curl -s https://$APP_NAME.$APP_ENV_DOMAIN
106
+ curl -s https://$APP_NAME.$APP_ENVIRONMENT_DOMAIN
107
107
108
108
# Test the blue label FQDN
109
- curl -s https://$APP_NAME---blue.$APP_ENV_DOMAIN
109
+ curl -s https://$APP_NAME---blue.$APP_ENVIRONMENT_DOMAIN
110
110
111
111
# Test the green label FQDN
112
- curl -s https://$APP_NAME---green.$APP_ENV_DOMAIN
112
+ curl -s https://$APP_NAME---green.$APP_ENVIRONMENT_DOMAIN
113
113
```
114
114
115
115
## Send production traffic to the green revision
You can’t perform that action at this time.
0 commit comments