Documentation
¶
Overview ¶
Package run implements the "instance run" subcommand of the operator
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type OSDB ¶ added in v1.25.4
type OSDB struct {
// contains filtered or unexported fields
}
OSDB is a set of known OS releases
type OSEntry ¶ added in v1.25.4
type OSEntry struct {
// Version identifies the operating system version. This is the same
// as the "VERSION" field in the "/etc/osrelease" file.
Version string `json:"version"`
// DeprecatedFrom is the end-of-life date of this OS version
DeprecatedFrom time.Time `json:"deprecatedFrom"`
// SupportedUntil is the end of the OS version long-term-support period,
// as defined.
SupportedUntil time.Time `json:"supportedUntil"`
}
OSEntry represents an OS version.
Between the release date and DeprecatedFrom, the OS Version is **supported** and **not deprecated**.
Between DeprecatedFrom and SupportedUntil, the OS Version is **supported** and **deprecated**.
After SupportedUntil, the OS Version is **not supported** and **deprecated**.
func (*OSEntry) IsDeprecated ¶ added in v1.25.4
IsDeprecated checks if the release is deprecated.
Click to show internal directories.
Click to hide internal directories.