1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00

CAPZASH Fork: Add CAPZASH Controller support

Selects and runs the CAPZASH controller when using Azure Stack.
This commit is contained in:
Patrick Dillon
2025-04-07 15:28:41 -04:00
parent 6fe8690a54
commit b185990627
2 changed files with 4 additions and 1 deletions

View File

@@ -36,6 +36,9 @@ var (
AWS = infrastructureProvider("aws")
// Azure is the provider for creating resources in Azure.
Azure = infrastructureProvider("azure")
// AzureStack is the provider for creating resources in AzureStack.
// The AzureStack provider is maintained in an OpenShift fork of CAPZ.
AzureStack = infrastructureProvider("azurestack")
// AzureASO is a companion component to Azure that is used to create resources declaratively.
AzureASO = infrastructureProvider("azureaso")
// GCP is the provider for creating resources in GCP.

View File

@@ -233,7 +233,7 @@ func (c *system) Run(ctx context.Context) error { //nolint:gocyclo
controllers = append(controllers,
c.getInfrastructureController(
&Azure,
&azProvider,
[]string{
"-v=2",
"--health-addr={{suggestHealthHostPort}}",