mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-05 12:26:21 +02:00
Add new EnvironmentConfig document for configuring the Env vars. Deprecate .Machine.Env Closes #12439 Signed-off-by: Mateusz Urbanek <mateusz.urbanek@siderolabs.com>
65 lines
1.9 KiB
Go
65 lines
1.9 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 runtime
|
|
|
|
import (
|
|
"github.com/cosi-project/runtime/pkg/resource"
|
|
"github.com/cosi-project/runtime/pkg/resource/meta"
|
|
"github.com/cosi-project/runtime/pkg/resource/protobuf"
|
|
"github.com/cosi-project/runtime/pkg/resource/typed"
|
|
|
|
"github.com/siderolabs/talos/pkg/machinery/proto"
|
|
)
|
|
|
|
// EnvironmentType is type of Environment resource.
|
|
const EnvironmentType = resource.Type("Environments.runtime.talos.dev")
|
|
|
|
// Environment resource holds information about environment variables.
|
|
type Environment = typed.Resource[EnvironmentSpec, EnvironmentExtension]
|
|
|
|
// EnvironmentSpec describes the specification of Environment resource.
|
|
//
|
|
//gotagsrewrite:gen
|
|
type EnvironmentSpec struct {
|
|
Variables []string `yaml:"variables" protobuf:"1"`
|
|
}
|
|
|
|
// NewEnvironment initializes a Environment resource.
|
|
func NewEnvironment(id resource.ID) *Environment {
|
|
return typed.NewResource[EnvironmentSpec, EnvironmentExtension](
|
|
resource.NewMetadata(NamespaceName, EnvironmentType, id, resource.VersionUndefined),
|
|
EnvironmentSpec{},
|
|
)
|
|
}
|
|
|
|
// EnvironmentExtension is auxiliary resource data for Environment.
|
|
type EnvironmentExtension struct{}
|
|
|
|
// ResourceDefinition implements meta.ResourceDefinitionProvider interface.
|
|
func (EnvironmentExtension) ResourceDefinition() meta.ResourceDefinitionSpec {
|
|
return meta.ResourceDefinitionSpec{
|
|
Type: EnvironmentType,
|
|
Aliases: []resource.Type{
|
|
"env",
|
|
},
|
|
DefaultNamespace: NamespaceName,
|
|
PrintColumns: []meta.PrintColumn{
|
|
{
|
|
Name: "Variables",
|
|
JSONPath: "{.variables}",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterDefaultTypes()
|
|
|
|
err := protobuf.RegisterDynamic[EnvironmentSpec](EnvironmentType, &Environment{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|