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

feat: add intel_icelake as possible cpu family #259

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion apis/compute/v1alpha1/server_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type ServerParameters struct {
// available CPU architectures can be retrieved from the datacenter resource.
//
// +immutable
// +kubebuilder:validation:Enum=AMD_OPTERON;INTEL_SKYLAKE;INTEL_XEON
// +kubebuilder:validation:Enum=AMD_OPTERON;INTEL_SKYLAKE;INTEL_XEON;INTEL_ICELAKE
CPUFamily string `json:"cpuFamily,omitempty"`
// +kubebuilder:validation:Optional
BootCdromID string `json:"bootCdromId,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion apis/compute/v1alpha1/serverset_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type ServerSetTemplateSpec struct {
// available CPU architectures can be retrieved from the datacenter resource.
//
// +immutable
// +kubebuilder:validation:Enum=AMD_OPTERON;INTEL_SKYLAKE;INTEL_XEON
// +kubebuilder:validation:Enum=AMD_OPTERON;INTEL_SKYLAKE;INTEL_XEON;INTEL_ICELAKE
CPUFamily string `json:"cpuFamily,omitempty"`
// The total number of cores for the server.
//
Expand Down
1 change: 1 addition & 0 deletions package/crds/compute.ionoscloud.crossplane.io_servers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ spec:
- AMD_OPTERON
- INTEL_SKYLAKE
- INTEL_XEON
- INTEL_ICELAKE
type: string
datacenterConfig:
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ spec:
- AMD_OPTERON
- INTEL_SKYLAKE
- INTEL_XEON
- INTEL_ICELAKE
type: string
nics:
description: NICs are the network interfaces of the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,7 @@ spec:
- AMD_OPTERON
- INTEL_SKYLAKE
- INTEL_XEON
- INTEL_ICELAKE
type: string
nics:
description: NICs are the network interfaces of the server.
Expand Down
Loading