Skip to content
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

Bug 2049838: added Nutanix platform to openshift/api #1059

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
added Nutanix platform type to +kubebuilder:validation:Enum annotatio…
…n on the PlatformType type
  • Loading branch information
yannickstruyf3 committed Nov 16, 2021
commit 775f773bafe0e7266a23466b2299c0ae0d381d5b
3 changes: 3 additions & 0 deletions config/v1/0000_10_config-operator_01_infrastructure.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ spec:
- EquinixMetal
- PowerVS
- AlibabaCloud
- Nutanix
vsphere:
description: VSphere contains settings specific to the VSphere infrastructure provider.
type: object
Expand Down Expand Up @@ -173,6 +174,7 @@ spec:
- EquinixMetal
- PowerVS
- AlibabaCloud
- Nutanix
platformStatus:
description: platformStatus holds status information specific to the underlying infrastructure provider.
type: object
Expand Down Expand Up @@ -433,6 +435,7 @@ spec:
- EquinixMetal
- PowerVS
- AlibabaCloud
- Nutanix
vsphere:
description: VSphere contains settings specific to the VSphere infrastructure provider.
type: object
Expand Down
2 changes: 1 addition & 1 deletion config/v1/types_infrastructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const (
)

// PlatformType is a specific supported infrastructure provider.
// +kubebuilder:validation:Enum="";AWS;Azure;BareMetal;GCP;Libvirt;OpenStack;None;VSphere;oVirt;IBMCloud;KubeVirt;EquinixMetal;PowerVS;AlibabaCloud
// +kubebuilder:validation:Enum="";AWS;Azure;BareMetal;GCP;Libvirt;OpenStack;None;VSphere;oVirt;IBMCloud;KubeVirt;EquinixMetal;PowerVS;AlibabaCloud;Nutanix
type PlatformType string

const (
Expand Down