Skip to content

Commit 16f6443

Browse files
authored
alt text fixes
1 parent 5563fa2 commit 16f6443

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Many services, especially containerized services, are addressable through a pre-
1616

1717
DNS service maps DNS names to service names, which in turn are resolved by the Naming Service to return the service endpoint. The DNS name for the service is provided at the time of creation. The following diagram shows how DNS service works for stateless services. For brevity, the diagrams only show one endpoint for the services, although each service can have multiple endpoints.
1818

19-
![Diagram showing how DNS names are mapped to service names by DNS service for stateless services, PNG.](./media/service-fabric-dnsservice/stateless-dns.png)
19+
![Diagram showing how DNS names are mapped to service names by DNS service for stateless services.](./media/service-fabric-dnsservice/stateless-dns.png)
2020

2121
Beginning with Service Fabric version 6.3, the Service Fabric DNS protocol has been extended to include a scheme for addressing partitioned stateful services. These extensions make it possible to resolve specific partition IP addresses using a combination of stateful service DNS name and the partition name. All three partitioning schemes are supported:
2222

@@ -26,7 +26,7 @@ Beginning with Service Fabric version 6.3, the Service Fabric DNS protocol has b
2626

2727
The following diagram shows how DNS service works for partitioned stateful services.
2828

29-
![Diagram showing how DNS names are mapped to service names by DNS service for partitioned stateful services, PNG.](./media/service-fabric-dnsservice/stateful-dns.png)
29+
![Diagram showing how DNS names are mapped to service names by DNS service for partitioned stateful services.](./media/service-fabric-dnsservice/stateful-dns.png)
3030

3131
For more information on partitioned queries, refer to the [section below](#making-dns-queries-on-a-stateful-service-partition).
3232

@@ -44,11 +44,11 @@ To deploy a new cluster with ARM templates, you can either use the [sample templ
4444
#### Clusters using Azure portal
4545
If you are creating a standard cluster in the portal, DNS service is enabled by default in the **Include DNS service** option under the **Add on features** section.
4646

47-
![Screenshot of enabling DNS service for a standard cluster through the portal, PNG.](./media/service-fabric-dnsservice/enable-dns-service-sfrp.png)
47+
![Screenshot of enabling DNS service for a standard cluster through the portal.](./media/service-fabric-dnsservice/enable-dns-service-sfrp.png)
4848

4949
If you are creating a managed cluster in the portal, DNS service is enabled by default in the **DNS service** option under the **Add on features** section.
5050

51-
![Screenshot of enabling DNS service for a managed cluster through the portal, PNG.](./media/service-fabric-dnsservice/enable-dns-service-sfmc.png)
51+
![Screenshot of enabling DNS service for a managed cluster through the portal.](./media/service-fabric-dnsservice/enable-dns-service-sfmc.png)
5252

5353
### Existing clusters
5454
If you are updating an existing managed cluster to enable DNS service, you can do so from the portal by visiting the **Add-on services** page from the cluster resource page. Otherwise, you can enable DNS service using alternative methods that are referenced below:
@@ -239,7 +239,7 @@ Update-ServiceFabricService `
239239
### Verify that a DNS name is set in Service Fabric Explorer
240240
Once the service is deployed with the DNS name, Service Fabric Explorer will show the DNS name for the service, as shown in the following figure:
241241

242-
![Screenshot of the DNS name in Service Fabric Explorer, PNG.](./media/service-fabric-dnsservice/service-fabric-explorer-dns.png)
242+
![Screenshot of the DNS name in Service Fabric Explorer.](./media/service-fabric-dnsservice/service-fabric-explorer-dns.png)
243243

244244
> [!NOTE]
245245
> This view may be different depending on the version of Service Fabric Explorer used, however, the DNS name field should be visible in some form on the service page.
@@ -337,7 +337,7 @@ public class ValuesController : Controller
337337
## Recursive queries
338338
For DNS names that DNS service can't resolve on its own (for example, a public DNS name), it will forward the query to pre-existing recursive DNS servers on the nodes.
339339

340-
![Diagram showing how DNS queries for public names are resolved, PNG.](./media/service-fabric-dnsservice/recursive-dns.png)
340+
![Diagram showing how DNS queries for public names are resolved.](./media/service-fabric-dnsservice/recursive-dns.png)
341341

342342
Prior to Service Fabric 9.0, these servers were queried serially until a response was received, with a fixed timeout period of 5 seconds in between. If a server didn't respond within the timeout period, the next server (if available) would be queried. In the case that these DNS servers were encountering any issues, completion of DNS queries would take longer than 5 seconds, which is not ideal.
343343

0 commit comments

Comments
 (0)