Skip to content

Commit 27dce37

Browse files
committed
Fix incorrect example
1 parent c7e2af1 commit 27dce37

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

articles/operator-service-manager/how-to-use-helm-option-parameters.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ resource nfResource 'Microsoft.HybridNetwork/networkFunctions@2023-09-01' = [for
116116
allowSoftwareUpdate: true
117117
configurationType: 'Open'
118118
deploymentValues: string(values)
119-
roleOverrideValues: ['{"name": "Contoso-one", "deployParametersMappingRuleProfile": {"applicationEnablement": "Enabled", "helmMappingRuleProfile": {"options": {"installOptions": {"atomic": "false"}},{"upgradeOptions": {"atomic": "false"}}}}}']}}]
119+
roleOverrideValues: [
120+
'{"name":"Contoso-one","deployParametersMappingRuleProfile":{"helmMappingRuleProfile":{"options":{"installOptions":{"injectArtifactStoreDetails":"true", "atomic": "false"},"upgradeOptions":{"injectArtifactStoreDetails":"true","atomic": "false"}}}}}'
121+
]}}]
120122
```
121123

122124
### Build the edited ARM Template and upload it to the Artifact Store
@@ -200,7 +202,11 @@ resource nfResource 'Microsoft.HybridNetwork/networkFunctions@2023-09-01' = [for
200202
allowSoftwareUpdate: true
201203
configurationType: 'Open'
202204
deploymentValues: string(values)
203-
roleOverrideValues: ['{"name": "Contoso-one", "deployParametersMappingRuleProfile": {"applicationEnablement": "Enabled", "helmMappingRuleProfile": {"options": {"installOptions": {"atomic": "false"}},{"upgradeOptions": {"atomic": "false"}}}}},{"name": "Contoso-two", "deployParametersMappingRuleProfile": {"applicationEnablement": "Enabled", "helmMappingRuleProfile": {"options": {"installOptions": {"atomic": "false"}},{"upgradeOptions": {"atomic": "false"}}}}},{"name": "Contoso-three", "deployParametersMappingRuleProfile": {"applicationEnablement": "Enabled", "helmMappingRuleProfile": {"options": {"installOptions": {"atomic": "false"}},{"upgradeOptions": {"atomic": "false"}}}}}']}}]
205+
roleOverrideValues: [
206+
'{"name":"Contoso-one","deployParametersMappingRuleProfile":{"helmMappingRuleProfile":{"options":{"installOptions":{"injectArtifactStoreDetails":"true", "atomic": "false"},"upgradeOptions":{"injectArtifactStoreDetails":"true","atomic": "false"}}}}}'
207+
'{"name":"Contoso-two","deployParametersMappingRuleProfile":{"helmMappingRuleProfile":{"options":{"installOptions":{"injectArtifactStoreDetails":"true", "atomic": "false"},"upgradeOptions":{"injectArtifactStoreDetails":"true","atomic": "false"}}}}}'
208+
'{"name":"Contoso-three","deployParametersMappingRuleProfile":{"helmMappingRuleProfile":{"options":{"installOptions":{"injectArtifactStoreDetails":"true", "atomic": "false"},"upgradeOptions":{"injectArtifactStoreDetails":"true","atomic": "false"}}}}}'
209+
]}}]
204210
```
205211

206212
## Next steps

0 commit comments

Comments
 (0)