You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operators specify applicationEnablement as defined by the NFDV. If applicationEnablement for specific application is parameterized, then it must be passed through the deploymentValues property at runtime.
98
155
156
+
#### Sample configuration group schema (CGS) resource
157
+
```json
158
+
{
159
+
"type": "object",
160
+
"properties": {
161
+
"location": {
162
+
"type": "string"
163
+
},
164
+
"nfviType": {
165
+
"type": "string"
166
+
},
167
+
"nfdvId": {
168
+
"type": "string"
169
+
},
170
+
"helloworld-cnf-config": {
171
+
"type": "object",
172
+
"properties": {
173
+
"role1releasenamespace": {
174
+
"type": "string"
175
+
},
176
+
"role1releasename": {
177
+
"type": "string"
178
+
},
179
+
"role2releasenamespace": {
180
+
"type": "string"
181
+
},
182
+
"role2releasename": {
183
+
"type": "string"
184
+
},
185
+
"roleOverrideValues1": {
186
+
"type": "string"
187
+
},
188
+
"roleOverrideValues2": {
189
+
"type": "string"
190
+
}
191
+
},
192
+
"required": [
193
+
"role1releasenamespace",
194
+
"role1releasename",
195
+
"role2releasenamespace",
196
+
"role2releasename",
197
+
"roleOverrideValues1",
198
+
"roleOverrideValues2"
199
+
]
200
+
}
201
+
},
202
+
"required": [
203
+
"nfviType",
204
+
"nfdvId",
205
+
"location",
206
+
"helloworld-cnf-config"
207
+
]
208
+
}
209
+
```
210
+
211
+
#### Sample configuration group value (CGV) resource
Azure Operator Service Manager, where possible, supports in service upgrades, an upgrade method which advances a deployment version without interrupting the service. However, the ability for a given service to be upgraded without interruption is a feature of the service itself. Consult further with the service publisher to understand the in-service upgrade capabilities.
0 commit comments