remove unused bootstrap_ssh_in nsg rule

This commit is contained in:
Jim Minter 2020-04-01 16:41:55 -06:00
Родитель 9b552cd138
Коммит 05f64465b9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0730CBDA10D1A2D3
2 изменённых файлов: 2 добавлений и 14 удалений

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

@ -73,7 +73,8 @@ upstream OCP.
* ARO API server internal LB remains on highest available master subnet IP, like
in 4.2.
* ARO never creates aro-bootstrap-pip for bootstrap VM.
* ARO never creates aro-bootstrap-pip for bootstrap VM, or the corresponding NSG
rule.
* ARO API server LB uses Azure outboundRule rather than port 27627 inbound rule.

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

@ -134,19 +134,6 @@ func (i *Installer) installStorage(ctx context.Context, installConfig *installco
},
Name: to.StringPtr("apiserver_in"),
},
{
SecurityRulePropertiesFormat: &mgmtnetwork.SecurityRulePropertiesFormat{
Protocol: mgmtnetwork.SecurityRuleProtocolTCP,
SourcePortRange: to.StringPtr("*"),
DestinationPortRange: to.StringPtr("22"),
SourceAddressPrefix: to.StringPtr("*"),
DestinationAddressPrefix: to.StringPtr("*"),
Access: mgmtnetwork.SecurityRuleAccessAllow,
Priority: to.Int32Ptr(103),
Direction: mgmtnetwork.SecurityRuleDirectionInbound,
},
Name: to.StringPtr("bootstrap_ssh_in"),
},
},
},
Name: to.StringPtr("aro-controlplane-nsg"),