use domain name guid for cloudapp domain

This commit is contained in:
Jim Minter 2019-11-28 18:49:39 -06:00
Родитель 9cde0d4fc5
Коммит 8369d6f4dc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0730CBDA10D1A2D3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -220,7 +220,7 @@ func (i *Installer) installResources(ctx context.Context, doc *api.OpenShiftClus
PublicIPAddressPropertiesFormat: &network.PublicIPAddressPropertiesFormat{
PublicIPAllocationMethod: network.Static,
DNSSettings: &network.PublicIPAddressDNSSettings{
DomainNameLabel: &doc.OpenShiftCluster.Properties.InfraID,
DomainNameLabel: &doc.OpenShiftCluster.Properties.DomainName,
},
},
Name: to.StringPtr(doc.OpenShiftCluster.Properties.InfraID + "-pip"),
@ -640,7 +640,7 @@ func (i *Installer) installResources(ctx context.Context, doc *api.OpenShiftClus
RecordSetProperties: &dns.RecordSetProperties{
TTL: to.Int64Ptr(300),
CnameRecord: &dns.CnameRecord{
Cname: to.StringPtr(doc.OpenShiftCluster.Properties.InfraID + "." + installConfig.Config.Azure.Region + ".cloudapp.azure.com"),
Cname: to.StringPtr(doc.OpenShiftCluster.Properties.DomainName + "." + installConfig.Config.Azure.Region + ".cloudapp.azure.com"),
},
},
}, "", "")