Documentation ¶
Overview ¶
Package config should only include generic configurations
Index ¶
Constants ¶
const GroupName = "controllermanager.config.k8s.io"
GroupName is the "group" that is needed to uniquely identify the API
Variables ¶
var ( // SchemeBuilder is the scheme builder with scheme init functions to run for this API package SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme is a global function that registers this API group & version to a scheme AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
SchemeGroupVersion is group version used to register these objects
Functions ¶
This section is empty.
Types ¶
type ControllerLeaderConfiguration ¶
type ControllerLeaderConfiguration struct { // Name is the name of the controller being migrated // E.g. service-controller, route-controller, cloud-node-controller, etc Name string // Component is the name of the component in which the controller should be running. // E.g. kube-controller-manager, cloud-controller-manager, etc // Or '*' meaning the controller can be run under any component that participates in the migration Component string }
ControllerLeaderConfiguration provides the configuration for a migrating leader lock.
func (*ControllerLeaderConfiguration) DeepCopy ¶
func (in *ControllerLeaderConfiguration) DeepCopy() *ControllerLeaderConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerLeaderConfiguration.
func (*ControllerLeaderConfiguration) DeepCopyInto ¶
func (in *ControllerLeaderConfiguration) DeepCopyInto(out *ControllerLeaderConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GenericControllerManagerConfiguration ¶
type GenericControllerManagerConfiguration struct { // port is the port that the controller-manager's http service runs on. Port int32 // address is the IP address to serve on (set to 0.0.0.0 for all interfaces). Address string // minResyncPeriod is the resync period in reflectors; will be random between // minResyncPeriod and 2*minResyncPeriod. MinResyncPeriod metav1.Duration // ClientConnection specifies the kubeconfig file and client connection // settings for the proxy server to use when communicating with the apiserver. ClientConnection componentbaseconfig.ClientConnectionConfiguration // How long to wait between starting controller managers ControllerStartInterval metav1.Duration // leaderElection defines the configuration of leader election client. LeaderElection componentbaseconfig.LeaderElectionConfiguration // Controllers is the list of controllers to enable or disable // '*' means "all enabled by default controllers" // 'foo' means "enable 'foo'" // '-foo' means "disable 'foo'" // first item for a particular name wins Controllers []string // DebuggingConfiguration holds configuration for Debugging related features. Debugging componentbaseconfig.DebuggingConfiguration // LeaderMigrationEnabled indicates whether Leader Migration should be enabled for the controller manager. LeaderMigrationEnabled bool // LeaderMigration holds the configuration for Leader Migration. LeaderMigration LeaderMigrationConfiguration }
GenericControllerManagerConfiguration holds configuration for a generic controller-manager
func (*GenericControllerManagerConfiguration) DeepCopy ¶
func (in *GenericControllerManagerConfiguration) DeepCopy() *GenericControllerManagerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericControllerManagerConfiguration.
func (*GenericControllerManagerConfiguration) DeepCopyInto ¶
func (in *GenericControllerManagerConfiguration) DeepCopyInto(out *GenericControllerManagerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LeaderMigrationConfiguration ¶
type LeaderMigrationConfiguration struct { metav1.TypeMeta // LeaderName is the name of the leader election resource that protects the migration // E.g. 1-20-KCM-to-1-21-CCM LeaderName string // ResourceLock indicates the resource object type that will be used to lock // Should be "leases" or "endpoints" ResourceLock string // ControllerLeaders contains a list of migrating leader lock configurations ControllerLeaders []ControllerLeaderConfiguration }
LeaderMigrationConfiguration provides versioned configuration for all migrating leader locks. +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
func (*LeaderMigrationConfiguration) DeepCopy ¶
func (in *LeaderMigrationConfiguration) DeepCopy() *LeaderMigrationConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaderMigrationConfiguration.
func (*LeaderMigrationConfiguration) DeepCopyInto ¶
func (in *LeaderMigrationConfiguration) DeepCopyInto(out *LeaderMigrationConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LeaderMigrationConfiguration) DeepCopyObject ¶
func (in *LeaderMigrationConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.