Skip to content

Commit 7231ecb

Browse files
committed
acrolinx updates
1 parent 621552d commit 7231ecb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/service-fabric/service-fabric-service-manifest-resources.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ For Linux clusters, the **MY** store defaults to the folder **/var/lib/sfcerts**
155155

156156
## Overriding Endpoints in ServiceManifest.xml
157157

158-
In the ApplicationManifest add a ResourceOverrides section which will be a sibling to ConfigOverrides section. In this section you can specify the override for the Endpoints section in the resources section specified in the Service manifest. Overriding endpoints is supported in runtime 5.7.217/SDK 2.7.217 and higher.
158+
In the ApplicationManifest add a ResourceOverrides section, which will be a sibling to ConfigOverrides section. In this section, you can specify the override for the Endpoints section in the resources section specified in the Service manifest. Overriding endpoints is supported in runtime 5.7.217/SDK 2.7.217 and higher.
159159

160160
In order to override EndPoint in ServiceManifest using ApplicationParameters change the ApplicationManifest as following:
161161

162-
In the ServiceManifestImport section add a new section "ResourceOverrides"
162+
In the ServiceManifestImport section, add a new section "ResourceOverrides".
163163

164164
```xml
165165
<ServiceManifestImport>
@@ -189,13 +189,13 @@ In the Parameters add below:
189189
</Parameters>
190190
```
191191

192-
While deploying the application now you can pass in these values as ApplicationParameters for example:
192+
While deploying the application you can pass in these values as ApplicationParameters. For example:
193193

194194
```powershell
195195
PS C:\> New-ServiceFabricApplication -ApplicationName fabric:/myapp -ApplicationTypeName "AppType" -ApplicationTypeVersion "1.0.0" -ApplicationParameter @{Port='1001'; Protocol='https'; Type='Input'; Port1='2001'; Protocol='http'}
196196
```
197197

198-
Note: If the values provide for the ApplicationParameters is empty we go back to the default value provided in the ServiceManifest for the corresponding EndPointName.
198+
Note: If the values provide for the ApplicationParameters is empty, we go back to the default value provided in the ServiceManifest for the corresponding EndPointName.
199199

200200
For example:
201201

0 commit comments

Comments
 (0)