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.
1 parent 9c1a6b7 commit dc473ddCopy full SHA for dc473dd
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