Documentation ¶
Index ¶
Constants ¶
const GroupName = "alicloud.provider.extensions.config.gardener.cloud"
GroupName is the group name use in this package
Variables ¶
var ( // SchemeBuilder used to register the Shoot 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 CSI ¶ added in v1.30.0
type CSI struct { // EnableADController enables disks to be attached/detached from csi-attacher // Deprecated EnableADController *bool }
CSI is csi components configuration.
func (*CSI) DeepCopy ¶ added in v1.30.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSI.
func (*CSI) DeepCopyInto ¶ added in v1.30.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerConfiguration ¶
type ControllerConfiguration struct { metav1.TypeMeta // ClientConnection specifies the kubeconfig file and client connection // settings for the proxy server to use when communicating with the apiserver. ClientConnection *componentbaseconfig.ClientConnectionConfiguration // MachineImageOwnerSecretRef is the secret reference which contains credential of AliCloud subaccount for customized images. // We currently assume multiple customized images should always be under this account. MachineImageOwnerSecretRef *corev1.SecretReference ToBeSharedImageIDs []string // KubeAPIServer is the KubeAPIServer configuration. KubeAPIServer *KubeAPIServer // Service is the service configuration Service Service // ETCD is the etcd configuration. ETCD ETCD // HealthCheckConfig is the config for the health check controller HealthCheckConfig *healthcheckconfig.HealthCheckConfig // CSI is the config for CSI plugin components CSI *CSI }
ControllerConfiguration defines the configuration for the Alicloud provider.
func (*ControllerConfiguration) DeepCopy ¶
func (in *ControllerConfiguration) DeepCopy() *ControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerConfiguration.
func (*ControllerConfiguration) DeepCopyInto ¶
func (in *ControllerConfiguration) DeepCopyInto(out *ControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ControllerConfiguration) DeepCopyObject ¶
func (in *ControllerConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ETCD ¶
type ETCD struct { // ETCDStorage is the etcd storage configuration. Storage ETCDStorage // ETCDBackup is the etcd backup configuration. Backup ETCDBackup }
ETCD is an etcd configuration.
func (*ETCD) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCD.
func (*ETCD) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ETCDBackup ¶
type ETCDBackup struct { // Schedule is the etcd backup schedule. Schedule *string }
ETCDBackup is an etcd backup configuration.
func (*ETCDBackup) DeepCopy ¶
func (in *ETCDBackup) DeepCopy() *ETCDBackup
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDBackup.
func (*ETCDBackup) DeepCopyInto ¶
func (in *ETCDBackup) DeepCopyInto(out *ETCDBackup)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ETCDStorage ¶
type ETCDStorage struct { // ClassName is the name of the storage class used in etcd-main volume claims. ClassName *string // Capacity is the storage capacity used in etcd-main volume claims. Capacity *resource.Quantity }
ETCDStorage is an etcd storage configuration.
func (*ETCDStorage) DeepCopy ¶
func (in *ETCDStorage) DeepCopy() *ETCDStorage
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDStorage.
func (*ETCDStorage) DeepCopyInto ¶
func (in *ETCDStorage) DeepCopyInto(out *ETCDStorage)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeAPIServer ¶ added in v1.16.2
type KubeAPIServer struct { // MutateExternalTrafficPolicy specifies whether to mutate KubeAPIServer Service's ExternalTrafficPolicy to Local MutateExternalTrafficPolicy bool }
KubeAPIServer is a KubeAPIServer configuration.
func (*KubeAPIServer) DeepCopy ¶ added in v1.16.2
func (in *KubeAPIServer) DeepCopy() *KubeAPIServer
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServer.
func (*KubeAPIServer) DeepCopyInto ¶ added in v1.16.2
func (in *KubeAPIServer) DeepCopyInto(out *KubeAPIServer)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Service ¶ added in v1.18.1
type Service struct { // BackendLoadBalancerSpec specifies the type of backend Alicloud load balancer, default is slb.s1.small. BackendLoadBalancerSpec string }
Service is a load balancer service configuration.
func (*Service) DeepCopy ¶ added in v1.18.1
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Service.
func (*Service) DeepCopyInto ¶ added in v1.18.1
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.