Reputation: 1138
Microsoft docs say to use something like clustername.eastus.cloudapp.azure.com
, but what about custom DNS for the cluster?
Will the certificate properly validate or should the custom DNS (i.e. clustername.domain.com) be used?
Upvotes: 2
Views: 1025
Reputation: 11341
The dns provided by the docs is just an example, I don't think you will be able to register a certificate against a domain you don't own like .azure.com
.
In this case, you will register a certificate against a domain you own, and you either:
clustername.eastus.cloudapp.azure.com
orIn the demo, the Commom Name is just used to identify the certificate installed in the node(vm) certificate store.
The following links describes the use of certificates in more details:
https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-cluster-creation-via-portal
https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-windows-cluster-x509-security
Upvotes: 2