We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b0271a + dc473dd commit 0c43812Copy full SHA for 0c43812
pkg/asset/installconfig/installconfig.go
@@ -185,6 +185,11 @@ func (a *InstallConfig) platformValidation() error {
185
return alibabacloud.Validate(client, a.Config)
186
}
187
if a.Config.Platform.Azure != nil {
188
+ if a.Config.Platform.Azure.IsARO() {
189
+ // ARO performs platform validation in the Resource Provider before
190
+ // the Installer is called
191
+ return nil
192
+ }
193
client, err := a.Azure.Client()
194
if err != nil {
195
return err
0 commit comments