Skip to content

Commit a5f9878

Browse files
authored
Merge pull request #88976 from Nickomang/master
cleanup of code, added note about upgrading dns
2 parents 4ec5e88 + 2899adf commit a5f9878

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

articles/service-fabric/service-fabric-dnsservice.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ After you have a template, you can enable the DNS service with the following ste
6969

7070
- To enable the DNS service with default settings, add it to the `addonFeatures` section inside the `properties` section as shown in the following example:
7171

72-
```json
73-
"properties": {
74-
...
75-
76-
"addonFeatures": [
77-
"DnsService"
72+
```json
73+
"properties": {
74+
...
75+
"addonFeatures": [
76+
"DnsService"
7877
],
79-
...
80-
}
81-
```
78+
...
79+
}
80+
```
81+
8282
- To enable the service with other than default settings, add a `DnsService` section to the `fabricSettings` section inside the `properties` section. In this case, you don't need to add the DnsService to `addonFeatures`. To learn more about the properties that can be set for the DNS Service, see [DNS Service settings](./service-fabric-cluster-fabric-settings.md#dnsservice).
8383

8484
```json
@@ -107,7 +107,10 @@ After you have a template, you can enable the DNS service with the following ste
107107
]
108108
}
109109
```
110-
1. Once you have updated the cluster template with your changes, apply them and let the upgrade complete. When the upgrade completes, the DNS system service starts running in your cluster. The service name is `fabric:/System/DnsService`, and you can find it under the **System** service section in Service Fabric explorer.
110+
3. Once you have updated the cluster template with your changes, apply them and let the upgrade complete. When the upgrade completes, the DNS system service starts running in your cluster. The service name is `fabric:/System/DnsService`, and you can find it under the **System** service section in Service Fabric explorer.
111+
112+
> [!NOTE]
113+
> When upgrading DNS from disabled to enabled, Service Fabric Explorer may not reflect the new state. To solve, restart the nodes by modifying the UpgradePolicy in your Azure Resource Manager template. See the [Service Fabric Template Reference](https://docs.microsoft.com/azure/templates/microsoft.servicefabric/2019-03-01/clusters/applications) for more.
111114

112115

113116
## Setting the DNS name for your service

0 commit comments

Comments
 (0)