Skip to content
Merged
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
9 changes: 9 additions & 0 deletions api/v1/hypervisor_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ type OperatingSystemStatus struct {
// Represents the Operating System version.
Version string `json:"version,omitempty"`

// Identifying a specific variant or edition of the operating system
VariantID string `json:"variantID,omitempty"`

// PrettyVersion
PrettyVersion string `json:"prettyVersion,omitempty"`

Expand Down Expand Up @@ -152,6 +155,12 @@ type OperatingSystemStatus struct {

// FirmwareDate
FirmwareDate metav1.Time `json:"firmwareDate,omitempty"`

// Represents the Garden Linux build commit id
GardenLinuxCommitID string `json:"gardenLinuxCommitID,omitempty"`

// Represents the Garden Linux Feature Set
GardenLinuxFeatures []string `json:"gardenLinuxFeatures,omitempty"`
}

// Current capabilities reported by libvirt.
Expand Down
5 changes: 5 additions & 0 deletions api/v1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 40 additions & 11 deletions applyconfigurations/api/v1/operatingsystemstatus.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions config/crd/bases/kvm.cloud.sap_hypervisors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,14 @@ spec:
firmwareVersion:
description: FirmwareVersion
type: string
gardenLinuxCommitID:
description: Represents the Garden Linux build commit id
type: string
gardenLinuxFeatures:
description: Represents the Garden Linux Feature Set
items:
type: string
type: array
hardwareModel:
description: HardwareModel
type: string
Expand All @@ -336,6 +344,10 @@ spec:
prettyVersion:
description: PrettyVersion
type: string
variantID:
description: Identifying a specific variant or edition of the
operating system
type: string
version:
description: Represents the Operating System version.
type: string
Expand Down