-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add Nutanix-specific customizations to manifests #5631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,6 +30,7 @@ import ( | |
| ibmcloudtypes "github.com/openshift/installer/pkg/types/ibmcloud" | ||
| libvirttypes "github.com/openshift/installer/pkg/types/libvirt" | ||
| nonetypes "github.com/openshift/installer/pkg/types/none" | ||
| nutanixtypes "github.com/openshift/installer/pkg/types/nutanix" | ||
| openstacktypes "github.com/openshift/installer/pkg/types/openstack" | ||
| ovirttypes "github.com/openshift/installer/pkg/types/ovirt" | ||
| powervstypes "github.com/openshift/installer/pkg/types/powervs" | ||
|
|
@@ -92,7 +93,7 @@ func (cpc *CloudProviderConfig) Generate(dependencies asset.Parents) error { | |
| } | ||
|
|
||
| switch installConfig.Config.Platform.Name() { | ||
| case libvirttypes.Name, nonetypes.Name, baremetaltypes.Name, ovirttypes.Name: | ||
| case libvirttypes.Name, nonetypes.Name, baremetaltypes.Name, ovirttypes.Name, nutanixtypes.Name: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am a bit surprised that there is not a cloud provider config. Is the name of the secret with the creds hard-coded somewhere?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Currently, yes. |
||
| return nil | ||
| case awstypes.Name: | ||
| // Store the additional trust bundle in the ca-bundle.pem key if the cluster is being installed on a C2S region. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.