diff --git a/base/inventory/inventory.go b/base/inventory/inventory.go index c45cf4782..05fa1bb86 100644 --- a/base/inventory/inventory.go +++ b/base/inventory/inventory.go @@ -10,6 +10,7 @@ type SystemProfile struct { Rhsm Rhsm `json:"rhsm,omitempty"` Releasever *string `json:"releasever,omitempty"` SatelliteManaged bool `json:"satellite_managed,omitempty"` + BootcStatus Bootc `json:"bootc_status,omitempty"` } func (t *SystemProfile) GetInstalledPackages() []string { @@ -55,3 +56,11 @@ type DnfModule struct { type Rhsm struct { Version string `json:"version,omitempty"` } + +type Bootc struct { + Booted BootcBooted `json:"booted,omitempty"` +} + +type BootcBooted struct { + Image string `json:"image,omitempty"` +}