mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-05 20:36:18 +02:00
Update COSI, and stop using a fork of `gopkg.in/yaml.v3`, now we use new supported for of this library. Drop `MarshalYAMLBytes` for the machine config, as we actually marshal config as a string, and we don't need this at all. Make `talosctl` stop doing hacks on machine config for newer Talos, keep hacks for backwards compatibility. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
73 lines
1.5 KiB
Go
73 lines
1.5 KiB
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
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"go.yaml.in/yaml/v4"
|
|
)
|
|
|
|
// Load extension from the filesystem.
|
|
//
|
|
// This performs initial validation of the extension file structure.
|
|
func Load(path string) (*Extension, error) {
|
|
extension := &Extension{
|
|
directory: filepath.Base(path),
|
|
}
|
|
|
|
items, err := os.ReadDir(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, item := range items {
|
|
switch item.Name() {
|
|
case "manifest.yaml":
|
|
if err = extension.loadManifest(filepath.Join(path, item.Name())); err != nil {
|
|
return nil, err
|
|
}
|
|
case "rootfs":
|
|
extension.rootfsPath = filepath.Join(path, item.Name())
|
|
default:
|
|
return nil, fmt.Errorf("unexpected file %q", item.Name())
|
|
}
|
|
}
|
|
|
|
var zeroManifest Manifest
|
|
|
|
if extension.Manifest == zeroManifest {
|
|
return nil, errors.New("extension manifest is missing")
|
|
}
|
|
|
|
if extension.rootfsPath == "" {
|
|
return nil, errors.New("extension rootfs is missing")
|
|
}
|
|
|
|
return extension, nil
|
|
}
|
|
|
|
func (ext *Extension) loadManifest(path string) error {
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer f.Close() //nolint:errcheck
|
|
|
|
if err = yaml.NewDecoder(f).Decode(&ext.Manifest); err != nil {
|
|
return err
|
|
}
|
|
|
|
if ext.Manifest.Version != "v1alpha1" {
|
|
return fmt.Errorf("unsupported manifest version: %q", ext.Manifest.Version)
|
|
}
|
|
|
|
return nil
|
|
}
|