Documentation ¶
Index ¶
- Constants
- Variables
- func Convert_config_ControllerLeaderConfiguration_To_v1beta1_ControllerLeaderConfiguration(in *config.ControllerLeaderConfiguration, out *ControllerLeaderConfiguration, ...) error
- func Convert_config_LeaderMigrationConfiguration_To_v1beta1_LeaderMigrationConfiguration(in *config.LeaderMigrationConfiguration, out *LeaderMigrationConfiguration, ...) error
- func Convert_v1beta1_ControllerLeaderConfiguration_To_config_ControllerLeaderConfiguration(in *ControllerLeaderConfiguration, out *config.ControllerLeaderConfiguration, ...) error
- func Convert_v1beta1_LeaderMigrationConfiguration_To_config_LeaderMigrationConfiguration(in *LeaderMigrationConfiguration, out *config.LeaderMigrationConfiguration, ...) error
- func RegisterConversions(s *runtime.Scheme) error
- type ControllerLeaderConfiguration
- type LeaderMigrationConfiguration
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: "v1beta1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Convert_config_ControllerLeaderConfiguration_To_v1beta1_ControllerLeaderConfiguration ¶
func Convert_config_ControllerLeaderConfiguration_To_v1beta1_ControllerLeaderConfiguration(in *config.ControllerLeaderConfiguration, out *ControllerLeaderConfiguration, s conversion.Scope) error
Convert_config_ControllerLeaderConfiguration_To_v1beta1_ControllerLeaderConfiguration is an autogenerated conversion function.
func Convert_config_LeaderMigrationConfiguration_To_v1beta1_LeaderMigrationConfiguration ¶
func Convert_config_LeaderMigrationConfiguration_To_v1beta1_LeaderMigrationConfiguration(in *config.LeaderMigrationConfiguration, out *LeaderMigrationConfiguration, s conversion.Scope) error
Convert_config_LeaderMigrationConfiguration_To_v1beta1_LeaderMigrationConfiguration is an autogenerated conversion function.
func Convert_v1beta1_ControllerLeaderConfiguration_To_config_ControllerLeaderConfiguration ¶
func Convert_v1beta1_ControllerLeaderConfiguration_To_config_ControllerLeaderConfiguration(in *ControllerLeaderConfiguration, out *config.ControllerLeaderConfiguration, s conversion.Scope) error
Convert_v1beta1_ControllerLeaderConfiguration_To_config_ControllerLeaderConfiguration is an autogenerated conversion function.
func Convert_v1beta1_LeaderMigrationConfiguration_To_config_LeaderMigrationConfiguration ¶
func Convert_v1beta1_LeaderMigrationConfiguration_To_config_LeaderMigrationConfiguration(in *LeaderMigrationConfiguration, out *config.LeaderMigrationConfiguration, s conversion.Scope) error
Convert_v1beta1_LeaderMigrationConfiguration_To_config_LeaderMigrationConfiguration is an autogenerated conversion function.
func RegisterConversions ¶
RegisterConversions adds conversion functions to the given scheme. Public to allow building arbitrary schemes.
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 `json:"name"` // 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 `json:"component"` }
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 LeaderMigrationConfiguration ¶
type LeaderMigrationConfiguration struct { metav1.TypeMeta `json:",inline"` // LeaderName is the name of the leader election resource that protects the migration // E.g. 1-20-KCM-to-1-21-CCM LeaderName string `json:"leaderName"` // ResourceLock indicates the resource object type that will be used to lock // Should be "leases" or "endpoints" ResourceLock string `json:"resourceLock"` // ControllerLeaders contains a list of migrating leader lock configurations // +listType=atomic ControllerLeaders []ControllerLeaderConfiguration `json:"controllerLeaders"` }
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.