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
3 changes: 3 additions & 0 deletions api/v1/hypervisor_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ type OperatingSystemStatus struct {
// KernelVersion
KernelVersion string `json:"kernelVersion,omitempty"`

// KernelCommandLine contains the raw kernel boot parameters from /proc/cmdline.
KernelCommandLine string `json:"kernelCommandLine,omitempty"`

// HardwareVendor
HardwareVendor string `json:"hardwareVendor,omitempty"`

Expand Down
9 changes: 9 additions & 0 deletions applyconfigurations/api/v1/operatingsystemstatus.go

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

4 changes: 4 additions & 0 deletions config/crd/bases/kvm.cloud.sap_hypervisors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,10 @@ spec:
hardwareVendor:
description: HardwareVendor
type: string
kernelCommandLine:
description: KernelCommandLine contains the raw kernel boot parameters
from /proc/cmdline.
type: string
kernelName:
description: KernelName
type: string
Expand Down
Loading