kubernetes

package
v0.7.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 7, 2023 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Module = module.Descriptor{
	Kind: "kubernetes",
	Actions: []module.ActionDesc{
		{
			Name: module.CreateAction,
		},
		{
			Name: module.UpdateAction,
		},
	},
	DriverFactory: func(conf json.RawMessage) (module.Driver, error) {
		kd := &kubeDriver{}
		err := json.Unmarshal(conf, &kd)
		if err != nil {
			return nil, errors.ErrInvalid.WithMsgf("failed to unmarshal module config: %v", err)
		}
		return kd, nil
	},
}

Functions

This section is empty.

Types

type Output

type Output struct {
	Configs     kube.Config             `json:"configs"`
	ServerInfo  version.Info            `json:"server_info"`
	Tolerations map[string][]Toleration `json:"tolerations"`
}

func (Output) JSON

func (out Output) JSON() []byte

type Toleration

type Toleration struct {
	Key      string `json:"key"`
	Value    string `json:"value"`
	Effect   string `json:"effect"`
	Operator string `json:"operator"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL