mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-14 02:11:10 +02:00
Fixes #4815 This implements the following steps: * machine configuration updates * pulling and unpacking system extension images * validating, listing system extensions * re-packing system extensions * preserving installed extensions in `/etc/extensions.yaml` Once extension is enabled, raw information can be queried with: ``` $ talosctl -n 172.20.0.2 cat /etc/extensions.yaml layers: - image: 000.ghcr.io-smira-gvisor-c927b54-dirty.sqsh metadata: name: gvisor version: 20220117.0-v1.0.0 author: Andrew Rynhard description: | This system extension provides gVisor using containerd's runtime handler. compatibility: talos: version: '> v0.15.0-alpha.1' ``` This was tested with the `gvisor` system extension. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
31 lines
923 B
Go
31 lines
923 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package extensions
|
|
|
|
// Manifest is the structure of the extension manifest.yaml file.
|
|
type Manifest struct {
|
|
Version string `yaml:"version"`
|
|
Metadata Metadata `yaml:"metadata"`
|
|
}
|
|
|
|
// Metadata describes base extension metadata.
|
|
type Metadata struct {
|
|
Name string `yaml:"name"`
|
|
Version string `yaml:"version"`
|
|
Author string `yaml:"author"`
|
|
Description string `yaml:"description"`
|
|
Compatibility Compatibility `yaml:"compatibility"`
|
|
}
|
|
|
|
// Compatibility describes extension compatibility.
|
|
type Compatibility struct {
|
|
Talos Constraint `yaml:"talos"`
|
|
}
|
|
|
|
// Constraint describes compatibility constraint.
|
|
type Constraint struct {
|
|
Version string `yaml:"version"`
|
|
}
|