@@ -75,6 +75,8 @@ To build the application, follow these steps:
75
75
76
76
1 . Create the app in your Azure Spring Apps instance:
77
77
78
+ ### [ Standard plan] ( #tab/standard )
79
+
78
80
``` azurecli
79
81
az spring app create \
80
82
--resource-group <resource-group-name> \
@@ -84,6 +86,16 @@ To build the application, follow these steps:
84
86
--assign-endpoint
85
87
```
86
88
89
+ ### [ Enterprise plan] ( #tab/enterprise )
90
+
91
+ ``` azurecli
92
+ az spring app create \
93
+ --resource-group <resource-group-name> \
94
+ --service <Azure-Spring-Apps-instance-name> \
95
+ --name demo \
96
+ --assign-endpoint
97
+ ```
98
+
87
99
1 . Deploy the app to Azure Spring Apps:
88
100
89
101
``` azurecli
@@ -122,6 +134,8 @@ To build the application, follow these steps:
122
134
123
135
1 . Create the green deployment:
124
136
137
+ ### [ Standard plan] ( #tab/standard )
138
+
125
139
``` azurecli
126
140
az spring app deployment create \
127
141
--resource-group <resource-group-name> \
@@ -132,6 +146,17 @@ To build the application, follow these steps:
132
146
--artifact-path target\hellospring-0.0.1-SNAPSHOT.jar
133
147
```
134
148
149
+ ### [ Enterprise plan] ( #tab/enterprise )
150
+
151
+ ``` azurecli
152
+ az spring app deployment create \
153
+ --resource-group <resource-group-name> \
154
+ --service <Azure-Spring-Apps-instance-name> \
155
+ --app demo \
156
+ --name green \
157
+ --artifact-path target\hellospring-0.0.1-SNAPSHOT.jar
158
+ ```
159
+
135
160
## View apps and deployments
136
161
137
162
Use the following steps to view deployed apps.
0 commit comments