Documentation
¶
Index ¶
- Constants
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type BootstrapConfiguration
- type ControllerConfiguration
- type NodeAgentConfiguration
- type OperatingSystemConfigControllerConfig
- type Server
- type ServerConfiguration
- type TokenControllerConfig
Constants ¶
const GroupName = "nodeagent.config.gardener.cloud"
GroupName is the group name used in this package.
Variables ¶
var ( // SchemeBuilder used to register the NodeAgentConfiguration resource. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme is a pointer to SchemeBuilder.AddToScheme. AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
SchemeGroupVersion is group version used to register these objects.
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type BootstrapConfiguration ¶ added in v1.83.0
type BootstrapConfiguration struct {
// KubeletDataVolumeSize sets the data volume size of an unformatted disk on the worker node, which is used for
// /var/lib on the worker.
KubeletDataVolumeSize *int64
}
BootstrapConfiguration contains configuration for the bootstrap command.
func (*BootstrapConfiguration) DeepCopy ¶ added in v1.83.0
func (in *BootstrapConfiguration) DeepCopy() *BootstrapConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BootstrapConfiguration.
func (*BootstrapConfiguration) DeepCopyInto ¶ added in v1.83.0
func (in *BootstrapConfiguration) DeepCopyInto(out *BootstrapConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerConfiguration ¶ added in v1.83.0
type ControllerConfiguration struct {
// OperatingSystemConfig is the configuration for the operating system config controller.
OperatingSystemConfig OperatingSystemConfigControllerConfig
// Token is the configuration for the access token controller.
Token TokenControllerConfig
}
ControllerConfiguration defines the configuration of the controllers.
func (*ControllerConfiguration) DeepCopy ¶ added in v1.83.0
func (in *ControllerConfiguration) DeepCopy() *ControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerConfiguration.
func (*ControllerConfiguration) DeepCopyInto ¶ added in v1.83.0
func (in *ControllerConfiguration) DeepCopyInto(out *ControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NodeAgentConfiguration ¶
type NodeAgentConfiguration struct {
metav1.TypeMeta
// ClientConnection specifies the kubeconfig file and the client connection settings for the proxy server to use
// when communicating with the kube-apiserver of the shoot cluster.
ClientConnection componentbaseconfig.ClientConnectionConfiguration
// LogLevel is the level/severity for the logs. Must be one of [info,debug,error].
LogLevel string
// LogFormat is the output format for the logs. Must be one of [text,json].
LogFormat string
// Server defines the configuration of the HTTP server.
Server ServerConfiguration
// Debugging holds configuration for Debugging related features.
Debugging *componentbaseconfig.DebuggingConfiguration
// FeatureGates is a map of feature names to bools that enable or disable alpha/experimental features. This field
// modifies piecemeal the built-in default values from "github.com/gardener/gardener/pkg/operator/features/features.go".
// Default: nil
FeatureGates map[string]bool
// Bootstrap contains configuration for the bootstrap command.
Bootstrap *BootstrapConfiguration
// Controllers defines the configuration of the controllers.
Controllers ControllerConfiguration
}
NodeAgentConfiguration defines the configuration for the gardener-node-agent.
func (*NodeAgentConfiguration) DeepCopy ¶
func (in *NodeAgentConfiguration) DeepCopy() *NodeAgentConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeAgentConfiguration.
func (*NodeAgentConfiguration) DeepCopyInto ¶
func (in *NodeAgentConfiguration) DeepCopyInto(out *NodeAgentConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*NodeAgentConfiguration) DeepCopyObject ¶
func (in *NodeAgentConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type OperatingSystemConfigControllerConfig ¶ added in v1.83.0
type OperatingSystemConfigControllerConfig struct {
// SyncPeriod is the duration how often the operating system config is applied.
SyncPeriod *metav1.Duration
// SyncJitterPeriod is a jitter duration for the reconciler sync that can be used to distribute the syncs randomly.
// If its value is greater than 0 then the OSC secret will not be enqueued immediately but only after a random
// duration between 0 and the configured value. It is defaulted to 5m.
SyncJitterPeriod *metav1.Duration
// SecretName defines the name of the secret in the shoot cluster control plane, which contains the operating system
// config (OSC) for the gardener-node-agent.
SecretName string
// KubernetesVersion contains the Kubernetes version of the kubelet, used for annotating the corresponding node
// resource with a kubernetes version annotation.
KubernetesVersion *semver.Version
}
OperatingSystemConfigControllerConfig defines the configuration of the operating system config controller.
func (*OperatingSystemConfigControllerConfig) DeepCopy ¶ added in v1.83.0
func (in *OperatingSystemConfigControllerConfig) DeepCopy() *OperatingSystemConfigControllerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OperatingSystemConfigControllerConfig.
func (*OperatingSystemConfigControllerConfig) DeepCopyInto ¶ added in v1.83.0
func (in *OperatingSystemConfigControllerConfig) DeepCopyInto(out *OperatingSystemConfigControllerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Server ¶
type Server struct {
// BindAddress is the IP address on which to listen for the specified port.
BindAddress string
// Port is the port on which to serve requests.
Port int
}
Server contains information for HTTP(S) server configuration.
func (*Server) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Server.
func (*Server) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerConfiguration ¶
type ServerConfiguration struct {
// HealthProbes is the configuration for serving the healthz and readyz endpoints.
HealthProbes *Server
// Metrics is the configuration for serving the metrics endpoint.
Metrics *Server
}
ServerConfiguration contains details for the HTTP(S) servers.
func (*ServerConfiguration) DeepCopy ¶
func (in *ServerConfiguration) DeepCopy() *ServerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerConfiguration.
func (*ServerConfiguration) DeepCopyInto ¶
func (in *ServerConfiguration) DeepCopyInto(out *ServerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TokenControllerConfig ¶ added in v1.83.0
type TokenControllerConfig struct {
// SecretName defines the name of the secret in the shoot cluster control plane, which contains the `kube-apiserver`
// access token for the gardener-node-agent.
SecretName string
}
TokenControllerConfig defines the configuration of the access token controller.
func (*TokenControllerConfig) DeepCopy ¶ added in v1.83.0
func (in *TokenControllerConfig) DeepCopy() *TokenControllerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenControllerConfig.
func (*TokenControllerConfig) DeepCopyInto ¶ added in v1.83.0
func (in *TokenControllerConfig) DeepCopyInto(out *TokenControllerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.