Documentation ¶
Overview ¶
Package garden is the internal version of the API. +groupName=garden.sapcloud.io
Index ¶
- Constants
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type AWSCloud
- type AWSConstraints
- type AWSNetworks
- type AWSProfile
- type AWSVPC
- type AWSWorker
- type Addon
- type AddonClusterAutoscaler
- type Addons
- type AdmissionPlugin
- type Alicloud
- type AlicloudConstraints
- type AlicloudMachineType
- type AlicloudNetworks
- type AlicloudProfile
- type AlicloudVPC
- type AlicloudVolumeType
- type AlicloudWorker
- type AuditConfig
- type AuditPolicy
- type AzureCloud
- type AzureConstraints
- type AzureDomainCount
- type AzureNetworks
- type AzureProfile
- type AzureResourceGroup
- type AzureVNet
- type AzureWorker
- type Backup
- type BackupInfrastructure
- type BackupInfrastructureList
- type BackupInfrastructureSpec
- type BackupInfrastructureStatus
- type Cloud
- type CloudControllerManagerConfig
- type CloudProfile
- type CloudProfileList
- type CloudProfileSpec
- type CloudProvider
- type ClusterAutoscaler
- type DNS
- type DNSProviderConstraint
- type Extension
- type GCPCloud
- type GCPConstraints
- type GCPNetworks
- type GCPProfile
- type GCPVPC
- type GCPWorker
- type Gardener
- type Heapster
- type HelmTiller
- type Hibernation
- type HibernationSchedule
- type HorizontalPodAutoscalerConfig
- type Kube2IAM
- type Kube2IAMRole
- type KubeAPIServerConfig
- type KubeControllerManagerConfig
- type KubeLego
- type KubeProxyConfig
- type KubeSchedulerConfig
- type KubeletConfig
- type Kubernetes
- type KubernetesConfig
- type KubernetesConstraints
- type KubernetesDashboard
- type MachineImage
- type MachineType
- type Maintenance
- type MaintenanceAutoUpdate
- type MaintenanceTimeWindow
- type Monocular
- type NginxIngress
- type OIDCConfig
- type OpenStackCloud
- type OpenStackConstraints
- type OpenStackFloatingPool
- type OpenStackLoadBalancerProvider
- type OpenStackMachineType
- type OpenStackNetworks
- type OpenStackProfile
- type OpenStackRouter
- type OpenStackWorker
- type PacketCloud
- type PacketConstraints
- type PacketNetworks
- type PacketProfile
- type PacketWorker
- type Project
- type ProjectList
- type ProjectPhase
- type ProjectSpec
- type ProjectStatus
- type ProxyMode
- type Quota
- type QuotaList
- type QuotaScope
- type QuotaSpec
- type SecretBinding
- type SecretBindingList
- type Seed
- type SeedCloud
- type SeedList
- type SeedNetworks
- type SeedSpec
- type SeedStatus
- type Shoot
- type ShootList
- type ShootSpec
- type ShootStatus
- type VolumeType
- type Worker
- type Zone
Constants ¶
const ( // VolumeClassStandard is a constant for the standard volume class. VolumeClassStandard string = "standard" // VolumeClassPremium is a constant for the premium volume class. VolumeClassPremium string = "premium" )
const ( // QuotaMetricCPU is the constraint for the amount of CPUs QuotaMetricCPU corev1.ResourceName = corev1.ResourceCPU // QuotaMetricGPU is the constraint for the amount of GPUs (e.g. from Nvidia) QuotaMetricGPU corev1.ResourceName = "gpu" // QuotaMetricMemory is the constraint for the amount of memory QuotaMetricMemory corev1.ResourceName = corev1.ResourceMemory // QuotaMetricStorageStandard is the constraint for the size of a standard disk QuotaMetricStorageStandard corev1.ResourceName = corev1.ResourceStorage + ".standard" // QuotaMetricStoragePremium is the constraint for the size of a premium disk (e.g. SSD) QuotaMetricStoragePremium corev1.ResourceName = corev1.ResourceStorage + ".premium" // QuotaMetricLoadbalancer is the constraint for the amount of loadbalancers QuotaMetricLoadbalancer corev1.ResourceName = "loadbalancer" )
const ( // DefaultETCDBackupSchedule is a constant for the default schedule to take backups of a Shoot cluster (5 minutes). DefaultETCDBackupSchedule = "0 */24 * * *" // DefaultETCDBackupMaximum is a constant for the default number of etcd backups to keep for a Shoot cluster. DefaultETCDBackupMaximum = 7 // MinimumETCDFullBackupTimeInterval is the time interval between consecutive full backups. MinimumETCDFullBackupTimeInterval = 24 * time.Hour )
const ( // EventReconciling indicates that the a Reconcile operation started. EventReconciling = "Reconciling" // EventReconciled indicates that the a Reconcile operation was successful. EventReconciled = "Reconciled" // EventReconcileError indicates that the a Reconcile operation failed. EventReconcileError = "ReconcileError" // EventDeleting indicates that the a Delete operation started. EventDeleting = "Deleting" // EventDeleted indicates that the a Delete operation was successful. EventDeleted = "Deleted" // EventDeleteError indicates that the a Delete operation failed. EventDeleteError = "DeleteError" // ShootEventMaintenanceDone indicates that a maintenance operation has been performed. ShootEventMaintenanceDone = "MaintenanceDone" // ShootEventMaintenanceError indicates that a maintenance operation has failed. ShootEventMaintenanceError = "MaintenanceError" // ProjectEventNamespaceReconcileFailed indicates that the namespace reconciliation has failed. ProjectEventNamespaceReconcileFailed = "NamespaceReconcileFailed" // ProjectEventNamespaceReconcileSuccessful indicates that the namespace reconciliation has succeeded. ProjectEventNamespaceReconcileSuccessful = "NamespaceReconcileSuccessful" // ProjectEventNamespaceDeletionFailed indicates that the namespace deletion failed. ProjectEventNamespaceDeletionFailed = "NamespaceDeletionFailed" // ProjectEventNamespaceMarkedForDeletion indicates that the namespace has been successfully marked for deletion. ProjectEventNamespaceMarkedForDeletion = "NamespaceMarkedForDeletion" )
const ( // GardenerName is the value in a Garden resource's `.metadata.finalizers[]` array on which the Gardener will react // when performing a delete request on a resource. GardenerName = "gardener" // ExternalGardenerName is the value in a Kubernetes core resources `.metadata.finalizers[]` array on which the // Gardener will react when performing a delete request on a resource. ExternalGardenerName = "garden.sapcloud.io/gardener" // DefaultDomain is the default value in the Shoot's '.spec.dns.domain' when '.spec.dns.provider' is 'unmanaged' DefaultDomain = "cluster.local" )
const ( // SeedAvailable is a constant for a condition type indicating the Seed cluster availability. SeedAvailable gardencore.ConditionType = "Available" // ShootControlPlaneHealthy is a constant for a condition type indicating the control plane health. ShootControlPlaneHealthy gardencore.ConditionType = "ControlPlaneHealthy" // ShootEveryNodeReady is a constant for a condition type indicating the node health. ShootEveryNodeReady gardencore.ConditionType = "EveryNodeReady" // ShootSystemComponentsHealthy is a constant for a condition type indicating the system components health. ShootSystemComponentsHealthy gardencore.ConditionType = "SystemComponentsHealthy" // ShootAPIServerAvailable is a constant for a condition type indicating the api server is available. ShootAPIServerAvailable gardencore.ConditionType = "APIServerAvailable" )
const DNSUnmanaged string = "unmanaged"
DNSUnmanaged is a constant for the 'unmanaged' DNS provider.
const GroupName = "garden.sapcloud.io"
GroupName is the name of the Garden API group.
const ( // ShootSeedName is the field selector path for finding // the Seed cluster of a Shoot. ShootSeedName = "spec.cloud.seed" )
Field path constants that are specific to the internal API representation.
Variables ¶
var ( // SchemeBuilder is a new Scheme Builder which registers our API. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme is a reference to the Scheme Builder's AddToScheme function. 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 back a Group qualified GroupResource
Types ¶
type AWSCloud ¶
type AWSCloud struct { // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks AWSNetworks // Workers is a list of worker groups. Workers []AWSWorker // Zones is a list of availability zones to deploy the Shoot cluster to. Zones []string }
func (*AWSCloud) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSCloud.
func (*AWSCloud) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AWSConstraints ¶
type AWSConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []MachineType // VolumeTypes contains constraints regarding allowed values for volume types in the 'workers' block in the Shoot specification. VolumeTypes []VolumeType // Zones contains constraints regarding allowed values for 'zones' block in the Shoot specification. Zones []Zone }
AWSConstraints is an object containing constraints for certain values in the Shoot specification.
func (*AWSConstraints) DeepCopy ¶
func (in *AWSConstraints) DeepCopy() *AWSConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSConstraints.
func (*AWSConstraints) DeepCopyInto ¶
func (in *AWSConstraints) DeepCopyInto(out *AWSConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AWSNetworks ¶
type AWSNetworks struct { gardencore.K8SNetworks // VPC indicates whether to use an existing VPC or create a new one. VPC AWSVPC // Internal is a list of private subnets to create (used for internal load balancers). Internal []gardencore.CIDR // Public is a list of public subnets to create (used for bastion and load balancers). Public []gardencore.CIDR // Workers is a list of worker subnets (private) to create (used for the VMs). Workers []gardencore.CIDR }
AWSNetworks holds information about the Kubernetes and infrastructure networks.
func (*AWSNetworks) DeepCopy ¶
func (in *AWSNetworks) DeepCopy() *AWSNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSNetworks.
func (*AWSNetworks) DeepCopyInto ¶
func (in *AWSNetworks) DeepCopyInto(out *AWSNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AWSProfile ¶
type AWSProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints AWSConstraints }
AWSProfile defines certain constraints and definitions for the AWS cloud.
func (*AWSProfile) DeepCopy ¶
func (in *AWSProfile) DeepCopy() *AWSProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProfile.
func (*AWSProfile) DeepCopyInto ¶
func (in *AWSProfile) DeepCopyInto(out *AWSProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AWSVPC ¶
type AWSVPC struct { // ID is the AWS VPC id of an existing VPC. // +optional ID *string // CIDR is a CIDR range for a new VPC. // +optional CIDR *gardencore.CIDR }
AWSVPC contains either an id (of an existing VPC) or the CIDR (for a VPC to be created).
func (*AWSVPC) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSVPC.
func (*AWSVPC) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AWSWorker ¶
type AWSWorker struct { Worker // VolumeType is the type of the root volumes. VolumeType string // VolumeSize is the size of the root volume. VolumeSize string }
AWSWorker is the definition of a worker group.
func (*AWSWorker) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSWorker.
func (*AWSWorker) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Addon ¶
type Addon struct { // Enabled indicates whether the addon is enabled or not. Enabled bool }
Addon also enabling or disabling a specific addon and is used to derive from.
func (*Addon) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addon.
func (*Addon) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AddonClusterAutoscaler ¶
type AddonClusterAutoscaler struct {
Addon
}
AddonClusterAutoscaler describes configuration values for the cluster-autoscaler addon.
func (*AddonClusterAutoscaler) DeepCopy ¶
func (in *AddonClusterAutoscaler) DeepCopy() *AddonClusterAutoscaler
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonClusterAutoscaler.
func (*AddonClusterAutoscaler) DeepCopyInto ¶
func (in *AddonClusterAutoscaler) DeepCopyInto(out *AddonClusterAutoscaler)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Addons ¶
type Addons struct { // KubernetesDashboard holds configuration settings for the kubernetes dashboard addon. // +optional KubernetesDashboard *KubernetesDashboard // NginxIngress holds configuration settings for the nginx-ingress addon. // DEPRECATED: This field will be removed in a future version. // +optional NginxIngress *NginxIngress // ClusterAutoscaler holds configuration settings for the cluster autoscaler addon. // DEPRECATED: This field will be removed in a future version. // +optional ClusterAutoscaler *AddonClusterAutoscaler // Heapster holds configuration settings for the heapster addon. // DEPRECATED: This field will be removed in a future version. // +optional Heapster *Heapster // Kube2IAM holds configuration settings for the kube2iam addon (only AWS). // DEPRECATED: This field will be removed in a future version. // +optional Kube2IAM *Kube2IAM // KubeLego holds configuration settings for the kube-lego addon. // DEPRECATED: This field will be removed in a future version. // +optional KubeLego *KubeLego // Monocular holds configuration settings for the monocular addon. // DEPRECATED: This field will be removed in a future version. // +optional Monocular *Monocular }
Addons is a collection of configuration for specific addons which are managed by the Gardener.
func (*Addons) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addons.
func (*Addons) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AdmissionPlugin ¶
type AdmissionPlugin struct { // Name is the name of the plugin. Name string // Config is the configuration of the plugin. // NOTE: After a discussion with @mvladev we decided to not use the runtime.RawExtension type for the configuration // for now as there seems to be a bug with the OpenAPI generation which would make kubectl not correctly validate // the objects (see also https://github.com/kubernetes-sigs/cluster-api/issues/137). We keep it as string for now // and will later migrate the Go type to runtime.RawExtension once the issues have been resolved. // SEE ALSO: https://github.com/gardener/gardener/pull/322 // +optional Config *string }
AdmissionPlugin contains information about a specific admission plugin and its corresponding configuration.
func (*AdmissionPlugin) DeepCopy ¶
func (in *AdmissionPlugin) DeepCopy() *AdmissionPlugin
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionPlugin.
func (*AdmissionPlugin) DeepCopyInto ¶
func (in *AdmissionPlugin) DeepCopyInto(out *AdmissionPlugin)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Alicloud ¶
type Alicloud struct { // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks AlicloudNetworks // Workers is a list of worker groups. Workers []AlicloudWorker // Zones is a list of availability zones to deploy the Shoot cluster to, currently, only one is supported. Zones []string }
Alicloud contains the Shoot specification for Alibaba cloud
func (*Alicloud) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Alicloud.
func (*Alicloud) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudConstraints ¶
type AlicloudConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []AlicloudMachineType // VolumeTypes contains constraints regarding allowed values for volume types in the 'workers' block in the Shoot specification. VolumeTypes []AlicloudVolumeType // Zones contains constraints regarding allowed values for 'zones' block in the Shoot specification. Zones []Zone }
AlicloudConstraints is an object containing constraints for certain values in the Shoot specification
func (*AlicloudConstraints) DeepCopy ¶
func (in *AlicloudConstraints) DeepCopy() *AlicloudConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudConstraints.
func (*AlicloudConstraints) DeepCopyInto ¶
func (in *AlicloudConstraints) DeepCopyInto(out *AlicloudConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudMachineType ¶
type AlicloudMachineType struct { MachineType Zones []string }
AlicloudMachineType defines certain machine types and zone constraints.
func (*AlicloudMachineType) DeepCopy ¶
func (in *AlicloudMachineType) DeepCopy() *AlicloudMachineType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudMachineType.
func (*AlicloudMachineType) DeepCopyInto ¶
func (in *AlicloudMachineType) DeepCopyInto(out *AlicloudMachineType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudNetworks ¶
type AlicloudNetworks struct { gardencore.K8SNetworks // VPC indicates whether to use an existing VPC or create a new one. VPC AlicloudVPC // Workers is a CIDR of a worker subnet (private) to create (used for the VMs). Workers []gardencore.CIDR }
AlicloudNetworks holds information about the Kubernetes and infrastructure networks.
func (*AlicloudNetworks) DeepCopy ¶
func (in *AlicloudNetworks) DeepCopy() *AlicloudNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudNetworks.
func (*AlicloudNetworks) DeepCopyInto ¶
func (in *AlicloudNetworks) DeepCopyInto(out *AlicloudNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudProfile ¶
type AlicloudProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints AlicloudConstraints }
AlicloudProfile defines constraints and definitions in Alibaba Cloud environment.
func (*AlicloudProfile) DeepCopy ¶
func (in *AlicloudProfile) DeepCopy() *AlicloudProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudProfile.
func (*AlicloudProfile) DeepCopyInto ¶
func (in *AlicloudProfile) DeepCopyInto(out *AlicloudProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudVPC ¶
type AlicloudVPC struct { // ID is the Alicloud VPC id of an existing VPC. // +optional ID *string // CIDR is a CIDR range for a new VPC. // +optional CIDR *gardencore.CIDR }
AlicloudVPC contains either an id (of an existing VPC) or the CIDR (for a VPC to be created).
func (*AlicloudVPC) DeepCopy ¶
func (in *AlicloudVPC) DeepCopy() *AlicloudVPC
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudVPC.
func (*AlicloudVPC) DeepCopyInto ¶
func (in *AlicloudVPC) DeepCopyInto(out *AlicloudVPC)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudVolumeType ¶
type AlicloudVolumeType struct { VolumeType Zones []string }
AlicloudVolumeType defines certain volume types and zone constraints.
func (*AlicloudVolumeType) DeepCopy ¶
func (in *AlicloudVolumeType) DeepCopy() *AlicloudVolumeType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudVolumeType.
func (*AlicloudVolumeType) DeepCopyInto ¶
func (in *AlicloudVolumeType) DeepCopyInto(out *AlicloudVolumeType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AlicloudWorker ¶
type AlicloudWorker struct { Worker // VolumeType is the type of the root volumes. VolumeType string // VolumeSize is the size of the root volume. VolumeSize string }
AlicloudWorker is the definition of a worker group.
func (*AlicloudWorker) DeepCopy ¶
func (in *AlicloudWorker) DeepCopy() *AlicloudWorker
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlicloudWorker.
func (*AlicloudWorker) DeepCopyInto ¶
func (in *AlicloudWorker) DeepCopyInto(out *AlicloudWorker)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AuditConfig ¶
type AuditConfig struct { // AuditPolicy contains configuration settings for audit policy of the kube-apiserver. // +optional AuditPolicy *AuditPolicy }
AuditConfig contains settings for audit of the api server
func (*AuditConfig) DeepCopy ¶
func (in *AuditConfig) DeepCopy() *AuditConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuditConfig.
func (*AuditConfig) DeepCopyInto ¶
func (in *AuditConfig) DeepCopyInto(out *AuditConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AuditPolicy ¶
type AuditPolicy struct { // ConfigMapRef is a reference to a ConfigMap object in the same namespace, // which contains the audit policy for the kube-apiserver. // +optional ConfigMapRef *corev1.LocalObjectReference }
AuditPolicy contains audit policy for kube-apiserver
func (*AuditPolicy) DeepCopy ¶
func (in *AuditPolicy) DeepCopy() *AuditPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuditPolicy.
func (*AuditPolicy) DeepCopyInto ¶
func (in *AuditPolicy) DeepCopyInto(out *AuditPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureCloud ¶
type AzureCloud struct { // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks AzureNetworks // ResourceGroup indicates whether to use an existing resource group or create a new one. // +optional ResourceGroup *AzureResourceGroup // Workers is a list of worker groups. Workers []AzureWorker }
AzureCloud contains the Shoot specification for Azure.
func (*AzureCloud) DeepCopy ¶
func (in *AzureCloud) DeepCopy() *AzureCloud
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureCloud.
func (*AzureCloud) DeepCopyInto ¶
func (in *AzureCloud) DeepCopyInto(out *AzureCloud)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureConstraints ¶
type AzureConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []MachineType // VolumeTypes contains constraints regarding allowed values for volume types in the 'workers' block in the Shoot specification. VolumeTypes []VolumeType }
AzureConstraints is an object containing constraints for certain values in the Shoot specification.
func (*AzureConstraints) DeepCopy ¶
func (in *AzureConstraints) DeepCopy() *AzureConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureConstraints.
func (*AzureConstraints) DeepCopyInto ¶
func (in *AzureConstraints) DeepCopyInto(out *AzureConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureDomainCount ¶
type AzureDomainCount struct { // Region is a region in Azure. Region string // Count is the count value for the respective domain count. Count int }
AzureDomainCount defines the region and the count for this domain count value.
func (*AzureDomainCount) DeepCopy ¶
func (in *AzureDomainCount) DeepCopy() *AzureDomainCount
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureDomainCount.
func (*AzureDomainCount) DeepCopyInto ¶
func (in *AzureDomainCount) DeepCopyInto(out *AzureDomainCount)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureNetworks ¶
type AzureNetworks struct { gardencore.K8SNetworks // VNet indicates whether to use an existing VNet or create a new one. VNet AzureVNet // Workers is a CIDR of a worker subnet (private) to create (used for the VMs). Workers gardencore.CIDR }
AzureNetworks holds information about the Kubernetes and infrastructure networks.
func (*AzureNetworks) DeepCopy ¶
func (in *AzureNetworks) DeepCopy() *AzureNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureNetworks.
func (*AzureNetworks) DeepCopyInto ¶
func (in *AzureNetworks) DeepCopyInto(out *AzureNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureProfile ¶
type AzureProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints AzureConstraints // CountUpdateDomains is list of Azure update domain counts for each region. CountUpdateDomains []AzureDomainCount // CountFaultDomains is list of Azure fault domain counts for each region. CountFaultDomains []AzureDomainCount }
AzureProfile defines certain constraints and definitions for the Azure cloud.
func (*AzureProfile) DeepCopy ¶
func (in *AzureProfile) DeepCopy() *AzureProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureProfile.
func (*AzureProfile) DeepCopyInto ¶
func (in *AzureProfile) DeepCopyInto(out *AzureProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureResourceGroup ¶
type AzureResourceGroup struct { // Name is the name of an existing resource group. Name string }
AzureResourceGroup indicates whether to use an existing resource group or create a new one.
func (*AzureResourceGroup) DeepCopy ¶
func (in *AzureResourceGroup) DeepCopy() *AzureResourceGroup
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureResourceGroup.
func (*AzureResourceGroup) DeepCopyInto ¶
func (in *AzureResourceGroup) DeepCopyInto(out *AzureResourceGroup)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureVNet ¶
type AzureVNet struct { // Name is the AWS VNet name of an existing VNet. // +optional Name *string // CIDR is a CIDR range for a new VNet. // +optional CIDR *gardencore.CIDR }
AzureVNet indicates whether to use an existing VNet or create a new one.
func (*AzureVNet) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureVNet.
func (*AzureVNet) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AzureWorker ¶
type AzureWorker struct { Worker // VolumeType is the type of the root volumes. VolumeType string // VolumeSize is the size of the root volume. VolumeSize string }
AzureWorker is the definition of a worker group.
func (*AzureWorker) DeepCopy ¶
func (in *AzureWorker) DeepCopy() *AzureWorker
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureWorker.
func (*AzureWorker) DeepCopyInto ¶
func (in *AzureWorker) DeepCopyInto(out *AzureWorker)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Backup ¶
type Backup struct { // DEPRECATED: This field will be removed in a future version. Schedule string // DEPRECATED: This field will be removed in a future version. Maximum int }
Backup - DEPRECATED: This struct will be removed in a future version.
func (*Backup) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Backup.
func (*Backup) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackupInfrastructure ¶
type BackupInfrastructure struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Specification of the Backup Infrastructure. // +optional Spec BackupInfrastructureSpec // Most recently observed status of the Backup Infrastructure. // +optional Status BackupInfrastructureStatus }
BackupInfrastructure holds details about backup infrastructure +genclient +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +k8s:openapi-gen=x-kubernetes-print-columns:custom-columns=NAMESPACE:.metadata.namespace,NAME:.metadata.name,SEED:.spec.seed,STATUS:.status.lastOperation.state
func (*BackupInfrastructure) DeepCopy ¶
func (in *BackupInfrastructure) DeepCopy() *BackupInfrastructure
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupInfrastructure.
func (*BackupInfrastructure) DeepCopyInto ¶
func (in *BackupInfrastructure) DeepCopyInto(out *BackupInfrastructure)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BackupInfrastructure) DeepCopyObject ¶
func (in *BackupInfrastructure) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BackupInfrastructureList ¶
type BackupInfrastructureList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of BackupInfrastructure. Items []BackupInfrastructure }
BackupInfrastructureList is a list of BackupInfrastructure objects. +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
func (*BackupInfrastructureList) DeepCopy ¶
func (in *BackupInfrastructureList) DeepCopy() *BackupInfrastructureList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupInfrastructureList.
func (*BackupInfrastructureList) DeepCopyInto ¶
func (in *BackupInfrastructureList) DeepCopyInto(out *BackupInfrastructureList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BackupInfrastructureList) DeepCopyObject ¶
func (in *BackupInfrastructureList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BackupInfrastructureSpec ¶
type BackupInfrastructureSpec struct { // Seed is the name of a Seed object. Seed string // ShootUID is a unique identifier for the Shoot cluster for which the BackupInfrastructure object is created. ShootUID types.UID }
BackupInfrastructureSpec is the specification of a Backup Infrastructure.
func (*BackupInfrastructureSpec) DeepCopy ¶
func (in *BackupInfrastructureSpec) DeepCopy() *BackupInfrastructureSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupInfrastructureSpec.
func (*BackupInfrastructureSpec) DeepCopyInto ¶
func (in *BackupInfrastructureSpec) DeepCopyInto(out *BackupInfrastructureSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackupInfrastructureStatus ¶
type BackupInfrastructureStatus struct { // LastOperation holds information about the last operation on the BackupInfrastructure. // +optional LastOperation *gardencore.LastOperation // LastError holds information about the last occurred error during an operation. // +optional LastError *gardencore.LastError // ObservedGeneration is the most recent generation observed for this BackupInfrastructure. It corresponds to the // BackupInfrastructure's generation, which is updated on mutation by the API Server. // +optional ObservedGeneration *int64 }
BackupInfrastructureStatus holds the most recently observed status of the Backup Infrastructure.
func (*BackupInfrastructureStatus) DeepCopy ¶
func (in *BackupInfrastructureStatus) DeepCopy() *BackupInfrastructureStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupInfrastructureStatus.
func (*BackupInfrastructureStatus) DeepCopyInto ¶
func (in *BackupInfrastructureStatus) DeepCopyInto(out *BackupInfrastructureStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Cloud ¶
type Cloud struct { // Profile is a name of a CloudProfile object. Profile string // Region is a name of a cloud provider region. Region string // SecretBindingRef is a reference to a SecretBinding object. SecretBindingRef corev1.LocalObjectReference // Seed is the name of a Seed object. // +optional Seed *string // AWS contains the Shoot specification for the Amazon Web Services cloud. // +optional AWS *AWSCloud // Azure contains the Shoot specification for the Microsoft Azure cloud. // +optional Azure *AzureCloud // GCP contains the Shoot specification for the Google Cloud Platform cloud. // +optional GCP *GCPCloud // OpenStack contains the Shoot specification for the OpenStack cloud. // +optional OpenStack *OpenStackCloud // Alicloud contains the Shoot specification for the Alibaba cloud. // +optional Alicloud *Alicloud // PacketCloud contains the Shoot specification for the Packet cloud. // +optional Packet *PacketCloud }
Cloud contains information about the cloud environment and their specific settings. It must contain exactly one key of the below cloud providers.
func (*Cloud) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cloud.
func (*Cloud) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CloudControllerManagerConfig ¶
type CloudControllerManagerConfig struct {
KubernetesConfig
}
CloudControllerManagerConfig contains configuration settings for the cloud-controller-manager.
func (*CloudControllerManagerConfig) DeepCopy ¶
func (in *CloudControllerManagerConfig) DeepCopy() *CloudControllerManagerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudControllerManagerConfig.
func (*CloudControllerManagerConfig) DeepCopyInto ¶
func (in *CloudControllerManagerConfig) DeepCopyInto(out *CloudControllerManagerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CloudProfile ¶
type CloudProfile struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Spec defines the cloud environment properties. // +optional Spec CloudProfileSpec }
CloudProfile represents certain properties about a cloud environment.
func (*CloudProfile) DeepCopy ¶
func (in *CloudProfile) DeepCopy() *CloudProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudProfile.
func (*CloudProfile) DeepCopyInto ¶
func (in *CloudProfile) DeepCopyInto(out *CloudProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CloudProfile) DeepCopyObject ¶
func (in *CloudProfile) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CloudProfileList ¶
type CloudProfileList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of CloudProfiles. Items []CloudProfile }
CloudProfileList is a collection of CloudProfiles.
func (*CloudProfileList) DeepCopy ¶
func (in *CloudProfileList) DeepCopy() *CloudProfileList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudProfileList.
func (*CloudProfileList) DeepCopyInto ¶
func (in *CloudProfileList) DeepCopyInto(out *CloudProfileList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CloudProfileList) DeepCopyObject ¶
func (in *CloudProfileList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CloudProfileSpec ¶
type CloudProfileSpec struct { // AWS is the profile specification for the Amazon Web Services cloud. // +optional AWS *AWSProfile // Azure is the profile specification for the Microsoft Azure cloud. // +optional Azure *AzureProfile // GCP is the profile specification for the Google Cloud Platform cloud. // +optional GCP *GCPProfile // OpenStack is the profile specification for the OpenStack cloud. // +optional OpenStack *OpenStackProfile // Alicloud is the profile specification for the Alibaba cloud. // +optional Alicloud *AlicloudProfile // Packet is the profile specification for the Packet cloud. // +optional Packet *PacketProfile // CABundle is a certificate bundle which will be installed onto every host machine of the Shoot cluster. // +optional CABundle *string }
CloudProfileSpec is the specification of a CloudProfile. It must contain exactly one of its defined keys.
func (*CloudProfileSpec) DeepCopy ¶
func (in *CloudProfileSpec) DeepCopy() *CloudProfileSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudProfileSpec.
func (*CloudProfileSpec) DeepCopyInto ¶
func (in *CloudProfileSpec) DeepCopyInto(out *CloudProfileSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CloudProvider ¶
type CloudProvider string
CloudProvider is a string alias.
const ( // CloudProviderAWS is a constant for the AWS cloud provider. CloudProviderAWS CloudProvider = "aws" // CloudProviderAzure is a constant for the Azure cloud provider. CloudProviderAzure CloudProvider = "azure" // CloudProviderGCP is a constant for the GCP cloud provider. CloudProviderGCP CloudProvider = "gcp" // CloudProviderOpenStack is a constant for the OpenStack cloud provider. CloudProviderOpenStack CloudProvider = "openstack" // CloudProviderAlicloud is a constant for the Alibaba cloud provider. CloudProviderAlicloud CloudProvider = "alicloud" // CloudProviderPacket is a constant for the Packet cloud provider. CloudProviderPacket CloudProvider = "packet" )
type ClusterAutoscaler ¶
type ClusterAutoscaler struct { // ScaleDownUtilizationThreshold defines the threshold in % under which a node is being removed // +optional ScaleDownUtilizationThreshold *float64 // ScaleDownUnneededTime defines how long a node should be unneeded before it is eligible for scale down (default: 10 mins). // +optional ScaleDownUnneededTime *metav1.Duration // ScaleDownDelayAfterAdd defines how long after scale up that scale down evaluation resumes (default: 10 mins). // +optional ScaleDownDelayAfterAdd *metav1.Duration // ScaleDownDelayAfterFailure how long after scale down failure that scale down evaluation resumes (default: 3 mins). // +optional ScaleDownDelayAfterFailure *metav1.Duration // ScaleDownDelayAfterDelete how long after node deletion that scale down evaluation resumes, defaults to scanInterval (defaults to ScanInterval). // +optional ScaleDownDelayAfterDelete *metav1.Duration // ScanInterval how often cluster is reevaluated for scale up or down (default: 10 secs). // +optional ScanInterval *metav1.Duration }
ClusterAutoscaler contains the configration flags for the Kubernetes cluster autoscaler.
func (*ClusterAutoscaler) DeepCopy ¶
func (in *ClusterAutoscaler) DeepCopy() *ClusterAutoscaler
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAutoscaler.
func (*ClusterAutoscaler) DeepCopyInto ¶
func (in *ClusterAutoscaler) DeepCopyInto(out *ClusterAutoscaler)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNS ¶
type DNS struct { // Provider is the DNS provider type for the Shoot. // +optional Provider *string // HostedZoneID is the ID of an existing DNS Hosted Zone used to create the DNS records in. // +optional // deprecated HostedZoneID *string // Domain is the external available domain of the Shoot cluster. // +optional Domain *string // SecretName is a name of a secret containing credentials for the stated domain and the // provider. When not specified, the Gardener will use the cloud provider credentials referenced // by the Shoot and try to find respective credentials there. Specifying this field may override // this behavior, i.e. forcing the Gardener to only look into the given secret. // +optional SecretName *string }
DNS holds information about the provider, the hosted zone id and the domain.
func (*DNS) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNS.
func (*DNS) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSProviderConstraint ¶
type DNSProviderConstraint struct { // Name is the name of the DNS provider. Name string }
DNSProviderConstraint contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification.
func (*DNSProviderConstraint) DeepCopy ¶
func (in *DNSProviderConstraint) DeepCopy() *DNSProviderConstraint
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSProviderConstraint.
func (*DNSProviderConstraint) DeepCopyInto ¶
func (in *DNSProviderConstraint) DeepCopyInto(out *DNSProviderConstraint)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Extension ¶
type Extension struct { // Type is the type of the extension resource. Type string // ProviderConfig is the configuration passed to extension resource. ProviderConfig *gardencore.ProviderConfig }
Extension contains type and provider information for Shoot extensions.
func (*Extension) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Extension.
func (*Extension) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPCloud ¶
type GCPCloud struct { // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks GCPNetworks // Workers is a list of worker groups. Workers []GCPWorker // Zones is a list of availability zones to deploy the Shoot cluster to. Zones []string }
GCPCloud contains the Shoot specification for GCP.
func (*GCPCloud) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPCloud.
func (*GCPCloud) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPConstraints ¶
type GCPConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []MachineType // VolumeTypes contains constraints regarding allowed values for volume types in the 'workers' block in the Shoot specification. VolumeTypes []VolumeType // Zones contains constraints regarding allowed values for 'zones' block in the Shoot specification. Zones []Zone }
GCPConstraints is an object containing constraints for certain values in the Shoot specification.
func (*GCPConstraints) DeepCopy ¶
func (in *GCPConstraints) DeepCopy() *GCPConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPConstraints.
func (*GCPConstraints) DeepCopyInto ¶
func (in *GCPConstraints) DeepCopyInto(out *GCPConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPNetworks ¶
type GCPNetworks struct { gardencore.K8SNetworks // VPC indicates whether to use an existing VPC or create a new one. // +optional VPC *GCPVPC // Internal is a private subnet (used for internal load balancers). Internal *gardencore.CIDR // Workers is a list of CIDRs of worker subnets (private) to create (used for the VMs). Workers []gardencore.CIDR }
GCPNetworks holds information about the Kubernetes and infrastructure networks.
func (*GCPNetworks) DeepCopy ¶
func (in *GCPNetworks) DeepCopy() *GCPNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPNetworks.
func (*GCPNetworks) DeepCopyInto ¶
func (in *GCPNetworks) DeepCopyInto(out *GCPNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPProfile ¶
type GCPProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints GCPConstraints }
GCPProfile defines certain constraints and definitions for the GCP cloud.
func (*GCPProfile) DeepCopy ¶
func (in *GCPProfile) DeepCopy() *GCPProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPProfile.
func (*GCPProfile) DeepCopyInto ¶
func (in *GCPProfile) DeepCopyInto(out *GCPProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPVPC ¶
type GCPVPC struct { // Name is the name of an existing GCP VPC. Name string }
GCPVPC indicates whether to use an existing VPC or create a new one.
func (*GCPVPC) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPVPC.
func (*GCPVPC) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GCPWorker ¶
type GCPWorker struct { Worker // VolumeType is the type of the root volumes. VolumeType string // VolumeSize is the size of the root volume. VolumeSize string }
GCPWorker is the definition of a worker group.
func (*GCPWorker) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorker.
func (*GCPWorker) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Gardener ¶
type Gardener struct { // ID is the Docker container id of the Gardener which last acted on a Shoot cluster. ID string // Name is the hostname (pod name) of the Gardener which last acted on a Shoot cluster. Name string // Version is the version of the Gardener which last acted on a Shoot cluster. Version string }
Gardener holds the information about the Gardener
func (*Gardener) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Gardener.
func (*Gardener) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Heapster ¶
type Heapster struct {
Addon
}
Heapster describes configuration values for the heapster addon.
func (*Heapster) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Heapster.
func (*Heapster) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HelmTiller ¶
type HelmTiller struct {
Addon
}
HelmTiller describes configuration values for the helm-tiller addon.
func (*HelmTiller) DeepCopy ¶
func (in *HelmTiller) DeepCopy() *HelmTiller
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HelmTiller.
func (*HelmTiller) DeepCopyInto ¶
func (in *HelmTiller) DeepCopyInto(out *HelmTiller)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Hibernation ¶
type Hibernation struct { // Enabled is true if Shoot is hibernated, false otherwise. Enabled bool // Schedules determines the hibernation schedules. // +optional Schedules []HibernationSchedule }
Hibernation contains information whether the Shoot is suspended or not.
func (*Hibernation) DeepCopy ¶
func (in *Hibernation) DeepCopy() *Hibernation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Hibernation.
func (*Hibernation) DeepCopyInto ¶
func (in *Hibernation) DeepCopyInto(out *Hibernation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HibernationSchedule ¶
type HibernationSchedule struct { // Start is a Cron spec at which time a Shoot will be hibernated. // +optional Start *string // End is a Cron spec at which time a Shoot will be woken up. // +optional End *string // Location is the time location in which both start and and shall be evaluated. // +optional Location *string }
HibernationSchedule determines the hibernation schedule of a Shoot. A Shoot will be regularly hibernated at each start time and will be woken up at each end time. Start or End can be omitted, though at least one of each has to be specified.
func (*HibernationSchedule) DeepCopy ¶
func (in *HibernationSchedule) DeepCopy() *HibernationSchedule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HibernationSchedule.
func (*HibernationSchedule) DeepCopyInto ¶
func (in *HibernationSchedule) DeepCopyInto(out *HibernationSchedule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HorizontalPodAutoscalerConfig ¶
type HorizontalPodAutoscalerConfig struct { // DownscaleDelay is the period since last downscale, before another downscale can be performed in horizontal pod autoscaler. // +optional DownscaleDelay *metav1.Duration // SyncPeriod is the period for syncing the number of pods in horizontal pod autoscaler. // +optional SyncPeriod *metav1.Duration // Tolerance is the minimum change (from 1.0) in the desired-to-actual metrics ratio for the horizontal pod autoscaler to consider scaling. // +optional Tolerance *float64 // UpscaleDelay is the period since last upscale, before another upscale can be performed in horizontal pod autoscaler. // +optional UpscaleDelay *metav1.Duration // DownscaleStabilization is the period for which autoscaler will look backwards and not scale down below any recommendation it made during that period. // +optional DownscaleStabilization *metav1.Duration // InitialReadinessDelay is the period after pod start during which readiness changes will be treated as initial readiness. // +optional InitialReadinessDelay *metav1.Duration // CPUInitializationPeriod is the period after pod start when CPU samples might be skipped. // +optional CPUInitializationPeriod *metav1.Duration }
HorizontalPodAutoscalerConfig contains horizontal pod autoscaler configuration settings for the kube-controller-manager. Note: Descriptions were taken from the Kubernetes documentation.
func (*HorizontalPodAutoscalerConfig) DeepCopy ¶
func (in *HorizontalPodAutoscalerConfig) DeepCopy() *HorizontalPodAutoscalerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HorizontalPodAutoscalerConfig.
func (*HorizontalPodAutoscalerConfig) DeepCopyInto ¶
func (in *HorizontalPodAutoscalerConfig) DeepCopyInto(out *HorizontalPodAutoscalerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Kube2IAM ¶
type Kube2IAM struct { Addon // Roles is list of AWS IAM roles which should be created by the Gardener. // +optional Roles []Kube2IAMRole }
Kube2IAM describes configuration values for the kube2iam addon.
func (*Kube2IAM) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kube2IAM.
func (*Kube2IAM) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Kube2IAMRole ¶
type Kube2IAMRole struct { // Name is the name of the IAM role. Will be extended by the Shoot name. Name string // Description is a human readable message indiciating what this IAM role can be used for. Description string // Policy is an AWS IAM policy document. Policy string }
Kube2IAMRole allows passing AWS IAM policies which will result in IAM roles.
func (*Kube2IAMRole) DeepCopy ¶
func (in *Kube2IAMRole) DeepCopy() *Kube2IAMRole
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kube2IAMRole.
func (*Kube2IAMRole) DeepCopyInto ¶
func (in *Kube2IAMRole) DeepCopyInto(out *Kube2IAMRole)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeAPIServerConfig ¶
type KubeAPIServerConfig struct { KubernetesConfig // RuntimeConfig contains information about enabled or disabled APIs. // +optional RuntimeConfig map[string]bool // OIDCConfig contains configuration settings for the OIDC provider. // +optional OIDCConfig *OIDCConfig // AdmissionPlugins contains the list of user-defined admission plugins (additional to those managed by Gardener), and, if desired, the corresponding // configuration. // +optional AdmissionPlugins []AdmissionPlugin // AuditConfig contains configuration settings for the audit of the kube-apiserver. // +optional AuditConfig *AuditConfig }
KubeAPIServerConfig contains configuration settings for the kube-apiserver.
func (*KubeAPIServerConfig) DeepCopy ¶
func (in *KubeAPIServerConfig) DeepCopy() *KubeAPIServerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeAPIServerConfig.
func (*KubeAPIServerConfig) DeepCopyInto ¶
func (in *KubeAPIServerConfig) DeepCopyInto(out *KubeAPIServerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeControllerManagerConfig ¶
type KubeControllerManagerConfig struct { KubernetesConfig // HorizontalPodAutoscalerConfig contains horizontal pod autoscaler configuration settings for the kube-controller-manager. // +optional HorizontalPodAutoscalerConfig *HorizontalPodAutoscalerConfig }
KubeControllerManagerConfig contains configuration settings for the kube-controller-manager.
func (*KubeControllerManagerConfig) DeepCopy ¶
func (in *KubeControllerManagerConfig) DeepCopy() *KubeControllerManagerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerConfig.
func (*KubeControllerManagerConfig) DeepCopyInto ¶
func (in *KubeControllerManagerConfig) DeepCopyInto(out *KubeControllerManagerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeLego ¶
type KubeLego struct { Addon // Mail is the email address to register at Let's Encrypt. // +optional Mail string }
KubeLego describes configuration values for the kube-lego addon.
func (*KubeLego) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeLego.
func (*KubeLego) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeProxyConfig ¶
type KubeProxyConfig struct { KubernetesConfig // Mode specifies which proxy mode to use. // defaults to IPTables. Mode *ProxyMode }
KubeProxyConfig contains configuration settings for the kube-proxy.
func (*KubeProxyConfig) DeepCopy ¶
func (in *KubeProxyConfig) DeepCopy() *KubeProxyConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeProxyConfig.
func (*KubeProxyConfig) DeepCopyInto ¶
func (in *KubeProxyConfig) DeepCopyInto(out *KubeProxyConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeSchedulerConfig ¶
type KubeSchedulerConfig struct {
KubernetesConfig
}
KubeSchedulerConfig contains configuration settings for the kube-scheduler.
func (*KubeSchedulerConfig) DeepCopy ¶
func (in *KubeSchedulerConfig) DeepCopy() *KubeSchedulerConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerConfig.
func (*KubeSchedulerConfig) DeepCopyInto ¶
func (in *KubeSchedulerConfig) DeepCopyInto(out *KubeSchedulerConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubeletConfig ¶
type KubeletConfig struct { KubernetesConfig // PodPIDsLimit is the maximum number of process IDs per pod allowed by the kubelet. PodPIDsLimit *int64 // CPUCFSQuota allows you to disable/enable CPU throttling for Pods. // +optional CPUCFSQuota *bool // CPUManagerPolicy allows to set alternative CPU management policies (default: none). // +optional CPUManagerPolicy *string }
KubeletConfig contains configuration settings for the kubelet.
func (*KubeletConfig) DeepCopy ¶
func (in *KubeletConfig) DeepCopy() *KubeletConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletConfig.
func (*KubeletConfig) DeepCopyInto ¶
func (in *KubeletConfig) DeepCopyInto(out *KubeletConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Kubernetes ¶
type Kubernetes struct { // AllowPrivilegedContainers indicates whether privileged containers are allowed in the Shoot (default: true). // +optional AllowPrivilegedContainers *bool // KubeAPIServer contains configuration settings for the kube-apiserver. // +optional KubeAPIServer *KubeAPIServerConfig // CloudControllerManager contains configuration settings for the cloud-controller-manager. // +optional CloudControllerManager *CloudControllerManagerConfig // KubeControllerManager contains configuration settings for the kube-controller-manager. // +optional KubeControllerManager *KubeControllerManagerConfig // KubeScheduler contains configuration settings for the kube-scheduler. // +optional KubeScheduler *KubeSchedulerConfig // KubeProxy contains configuration settings for the kube-proxy. // +optional KubeProxy *KubeProxyConfig // Kubelet contains configuration settings for the kubelet. // +optional Kubelet *KubeletConfig // Version is the semantic Kubernetes version to use for the Shoot cluster. Version string // ClusterAutoscaler contains the configration flags for the Kubernetes cluster autoscaler. ClusterAutoscaler *ClusterAutoscaler `json:"clusterAutoscaler,omitempty"` }
Kubernetes contains the version and configuration variables for the Shoot control plane.
func (*Kubernetes) DeepCopy ¶
func (in *Kubernetes) DeepCopy() *Kubernetes
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kubernetes.
func (*Kubernetes) DeepCopyInto ¶
func (in *Kubernetes) DeepCopyInto(out *Kubernetes)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubernetesConfig ¶
type KubernetesConfig struct { // FeatureGates contains information about enabled feature gates. // +optional FeatureGates map[string]bool }
KubernetesConfig contains common configuration fields for the control plane components.
func (*KubernetesConfig) DeepCopy ¶
func (in *KubernetesConfig) DeepCopy() *KubernetesConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesConfig.
func (*KubernetesConfig) DeepCopyInto ¶
func (in *KubernetesConfig) DeepCopyInto(out *KubernetesConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubernetesConstraints ¶
type KubernetesConstraints struct { // Versions is the list of allowed Kubernetes versions for Shoot clusters (e.g., 1.13.1). Versions []string }
KubernetesConstraints contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification.
func (*KubernetesConstraints) DeepCopy ¶
func (in *KubernetesConstraints) DeepCopy() *KubernetesConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesConstraints.
func (*KubernetesConstraints) DeepCopyInto ¶
func (in *KubernetesConstraints) DeepCopyInto(out *KubernetesConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KubernetesDashboard ¶
type KubernetesDashboard struct { Addon // AuthenticationMode defines the authentication mode for the kubernetes-dashboard. // +optional AuthenticationMode *string }
KubernetesDashboard describes configuration values for the kubernetes-dashboard addon.
func (*KubernetesDashboard) DeepCopy ¶
func (in *KubernetesDashboard) DeepCopy() *KubernetesDashboard
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesDashboard.
func (*KubernetesDashboard) DeepCopyInto ¶
func (in *KubernetesDashboard) DeepCopyInto(out *KubernetesDashboard)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MachineImage ¶
type MachineImage struct { // Name is the name of the image. Name string // Version is the version of the image. Version string }
MachineImage defines the name and the version of the machine image in any environment.
func (*MachineImage) DeepCopy ¶
func (in *MachineImage) DeepCopy() *MachineImage
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineImage.
func (*MachineImage) DeepCopyInto ¶
func (in *MachineImage) DeepCopyInto(out *MachineImage)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MachineType ¶
type MachineType struct { // Name is the name of the machine type. Name string // Usable defines if the machine type can be used for shoot clusters. // +optional Usable *bool // CPU is the number of CPUs for this machine type. CPU resource.Quantity // GPU is the number of GPUs for this machine type. GPU resource.Quantity // Memory is the amount of memory for this machine type. Memory resource.Quantity }
MachineType contains certain properties of a machine type.
func (*MachineType) DeepCopy ¶
func (in *MachineType) DeepCopy() *MachineType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineType.
func (*MachineType) DeepCopyInto ¶
func (in *MachineType) DeepCopyInto(out *MachineType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Maintenance ¶
type Maintenance struct { // AutoUpdate contains information about which constraints should be automatically updated. // +optional AutoUpdate *MaintenanceAutoUpdate // TimeWindow contains information about the time window for maintenance operations. // +optional TimeWindow *MaintenanceTimeWindow }
Maintenance contains information about the time window for maintenance operations and which operations should be performed.
func (*Maintenance) DeepCopy ¶
func (in *Maintenance) DeepCopy() *Maintenance
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Maintenance.
func (*Maintenance) DeepCopyInto ¶
func (in *Maintenance) DeepCopyInto(out *Maintenance)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MaintenanceAutoUpdate ¶
type MaintenanceAutoUpdate struct { // KubernetesVersion indicates whether the patch Kubernetes version may be automatically updated. KubernetesVersion bool }
MaintenanceAutoUpdate contains information about which constraints should be automatically updated.
func (*MaintenanceAutoUpdate) DeepCopy ¶
func (in *MaintenanceAutoUpdate) DeepCopy() *MaintenanceAutoUpdate
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MaintenanceAutoUpdate.
func (*MaintenanceAutoUpdate) DeepCopyInto ¶
func (in *MaintenanceAutoUpdate) DeepCopyInto(out *MaintenanceAutoUpdate)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MaintenanceTimeWindow ¶
type MaintenanceTimeWindow struct { // Begin is the beginning of the time window in the format HHMMSS+ZONE, e.g. "220000+0100". // If not present, a random value will be computed. Begin string // End is the end of the time window in the format HHMMSS+ZONE, e.g. "220000+0100". // If not present, the value will be computed based on the "Begin" value. End string }
MaintenanceTimeWindow contains information about the time window for maintenance operations.
func (*MaintenanceTimeWindow) DeepCopy ¶
func (in *MaintenanceTimeWindow) DeepCopy() *MaintenanceTimeWindow
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MaintenanceTimeWindow.
func (*MaintenanceTimeWindow) DeepCopyInto ¶
func (in *MaintenanceTimeWindow) DeepCopyInto(out *MaintenanceTimeWindow)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Monocular ¶
type Monocular struct {
Addon
}
Monocular describes configuration values for the monocular addon.
func (*Monocular) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Monocular.
func (*Monocular) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NginxIngress ¶
type NginxIngress struct { Addon // LoadBalancerSourceRanges is list of whitelist IP sources for NginxIngress // +optional LoadBalancerSourceRanges []string }
NginxIngress describes configuration values for the nginx-ingress addon.
func (*NginxIngress) DeepCopy ¶
func (in *NginxIngress) DeepCopy() *NginxIngress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NginxIngress.
func (*NginxIngress) DeepCopyInto ¶
func (in *NginxIngress) DeepCopyInto(out *NginxIngress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OIDCConfig ¶
type OIDCConfig struct { // If set, the OpenID server's certificate will be verified by one of the authorities in the oidc-ca-file, otherwise the host's root CA set will be used. // +optional CABundle *string // The client ID for the OpenID Connect client, must be set if oidc-issuer-url is set. // +optional ClientID *string // If provided, the name of a custom OpenID Connect claim for specifying user groups. The claim value is expected to be a string or array of strings. This flag is experimental, please see the authentication documentation for further details. // +optional GroupsClaim *string // If provided, all groups will be prefixed with this value to prevent conflicts with other authentication strategies. // +optional GroupsPrefix *string // The URL of the OpenID issuer, only HTTPS scheme will be accepted. If set, it will be used to verify the OIDC JSON Web Token (JWT). // +optional IssuerURL *string // ATTENTION: Only meaningful for Kubernetes >= 1.11 // key=value pairs that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. // +optional RequiredClaims map[string]string // List of allowed JOSE asymmetric signing algorithms. JWTs with a 'alg' header value not in this list will be rejected. Values are defined by RFC 7518 https://tools.ietf.org/html/rfc7518#section-3.1 // +optional SigningAlgs []string // The OpenID claim to use as the user name. Note that claims other than the default ('sub') is not guaranteed to be unique and immutable. This flag is experimental, please see the authentication documentation for further details. (default "sub") // +optional UsernameClaim *string // If provided, all usernames will be prefixed with this value. If not provided, username claims other than 'email' are prefixed by the issuer URL to avoid clashes. To skip any prefixing, provide the value '-'. // +optional UsernamePrefix *string }
OIDCConfig contains configuration settings for the OIDC provider. Note: Descriptions were taken from the Kubernetes documentation.
func (*OIDCConfig) DeepCopy ¶
func (in *OIDCConfig) DeepCopy() *OIDCConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OIDCConfig.
func (*OIDCConfig) DeepCopyInto ¶
func (in *OIDCConfig) DeepCopyInto(out *OIDCConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackCloud ¶
type OpenStackCloud struct { // FloatingPoolName is the name of the floating pool to get FIPs from. FloatingPoolName string // LoadBalancerProvider is the name of the load balancer provider in the OpenStack environment. LoadBalancerProvider string // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks OpenStackNetworks // Workers is a list of worker groups. Workers []OpenStackWorker // Zones is a list of availability zones to deploy the Shoot cluster to. Zones []string }
OpenStackCloud contains the Shoot specification for OpenStack.
func (*OpenStackCloud) DeepCopy ¶
func (in *OpenStackCloud) DeepCopy() *OpenStackCloud
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackCloud.
func (*OpenStackCloud) DeepCopyInto ¶
func (in *OpenStackCloud) DeepCopyInto(out *OpenStackCloud)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackConstraints ¶
type OpenStackConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // FloatingPools contains constraints regarding allowed values of the 'floatingPoolName' block in the Shoot specification. FloatingPools []OpenStackFloatingPool // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // LoadBalancerProviders contains constraints regarding allowed values of the 'loadBalancerProvider' block in the Shoot specification. LoadBalancerProviders []OpenStackLoadBalancerProvider // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []OpenStackMachineType // Zones contains constraints regarding allowed values for 'zones' block in the Shoot specification. Zones []Zone }
OpenStackConstraints is an object containing constraints for certain values in the Shoot specification.
func (*OpenStackConstraints) DeepCopy ¶
func (in *OpenStackConstraints) DeepCopy() *OpenStackConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackConstraints.
func (*OpenStackConstraints) DeepCopyInto ¶
func (in *OpenStackConstraints) DeepCopyInto(out *OpenStackConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackFloatingPool ¶
type OpenStackFloatingPool struct { // Name is the name of the floating pool. Name string }
FloatingPools contains constraints regarding allowed values of the 'floatingPoolName' block in the Shoot specification.
func (*OpenStackFloatingPool) DeepCopy ¶
func (in *OpenStackFloatingPool) DeepCopy() *OpenStackFloatingPool
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackFloatingPool.
func (*OpenStackFloatingPool) DeepCopyInto ¶
func (in *OpenStackFloatingPool) DeepCopyInto(out *OpenStackFloatingPool)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackLoadBalancerProvider ¶
type OpenStackLoadBalancerProvider struct { // Name is the name of the load balancer provider. Name string }
LoadBalancerProviders contains constraints regarding allowed values of the 'loadBalancerProvider' block in the Shoot specification.
func (*OpenStackLoadBalancerProvider) DeepCopy ¶
func (in *OpenStackLoadBalancerProvider) DeepCopy() *OpenStackLoadBalancerProvider
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackLoadBalancerProvider.
func (*OpenStackLoadBalancerProvider) DeepCopyInto ¶
func (in *OpenStackLoadBalancerProvider) DeepCopyInto(out *OpenStackLoadBalancerProvider)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackMachineType ¶
type OpenStackMachineType struct { MachineType // VolumeType is the type of that volume. VolumeType string // VolumeSize is the amount of disk storage for this machine type. VolumeSize resource.Quantity }
OpenStackMachineType contains certain properties of a machine type in OpenStack
func (*OpenStackMachineType) DeepCopy ¶
func (in *OpenStackMachineType) DeepCopy() *OpenStackMachineType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackMachineType.
func (*OpenStackMachineType) DeepCopyInto ¶
func (in *OpenStackMachineType) DeepCopyInto(out *OpenStackMachineType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackNetworks ¶
type OpenStackNetworks struct { gardencore.K8SNetworks // Router indicates whether to use an existing router or create a new one. // +optional Router *OpenStackRouter // Workers is a list of CIDRs of worker subnets (private) to create (used for the VMs). Workers []gardencore.CIDR }
OpenStackNetworks holds information about the Kubernetes and infrastructure networks.
func (*OpenStackNetworks) DeepCopy ¶
func (in *OpenStackNetworks) DeepCopy() *OpenStackNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackNetworks.
func (*OpenStackNetworks) DeepCopyInto ¶
func (in *OpenStackNetworks) DeepCopyInto(out *OpenStackNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackProfile ¶
type OpenStackProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints OpenStackConstraints // KeyStoneURL is the URL for auth{n,z} in OpenStack (pointing to KeyStone). KeyStoneURL string // DNSServers is a list of IPs of DNS servers used while creating subnets. // +optional DNSServers []string // DHCPDomain is the dhcp domain of the OpenStack system configured in nova.conf. Only meaningful for // Kubernetes 1.10.1+. See https://github.com/kubernetes/kubernetes/pull/61890 for details. // +optional DHCPDomain *string // RequestTimeout specifies the HTTP timeout against the OpenStack API. // +optional RequestTimeout *string }
OpenStackProfile defines certain constraints and definitions for the OpenStack cloud.
func (*OpenStackProfile) DeepCopy ¶
func (in *OpenStackProfile) DeepCopy() *OpenStackProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackProfile.
func (*OpenStackProfile) DeepCopyInto ¶
func (in *OpenStackProfile) DeepCopyInto(out *OpenStackProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackRouter ¶
type OpenStackRouter struct { // ID is the router id of an existing OpenStack router. ID string }
OpenStackRouter indicates whether to use an existing router or create a new one.
func (*OpenStackRouter) DeepCopy ¶
func (in *OpenStackRouter) DeepCopy() *OpenStackRouter
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackRouter.
func (*OpenStackRouter) DeepCopyInto ¶
func (in *OpenStackRouter) DeepCopyInto(out *OpenStackRouter)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OpenStackWorker ¶
type OpenStackWorker struct {
Worker
}
OpenStackWorker is the definition of a worker group.
func (*OpenStackWorker) DeepCopy ¶
func (in *OpenStackWorker) DeepCopy() *OpenStackWorker
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenStackWorker.
func (*OpenStackWorker) DeepCopyInto ¶
func (in *OpenStackWorker) DeepCopyInto(out *OpenStackWorker)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PacketCloud ¶
type PacketCloud struct { // MachineImage holds information about the machine image to use for all workers. // It will default to the first image stated in the referenced CloudProfile if no // value has been provided. // +optional MachineImage *MachineImage // Networks holds information about the Kubernetes and infrastructure networks. Networks PacketNetworks // Workers is a list of worker groups. Workers []PacketWorker // Zones is a list of availability zones to deploy the Shoot cluster to, currently, only one is supported. Zones []string }
PacketCloud contains the Shoot specification for Packet cloud
func (*PacketCloud) DeepCopy ¶
func (in *PacketCloud) DeepCopy() *PacketCloud
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PacketCloud.
func (*PacketCloud) DeepCopyInto ¶
func (in *PacketCloud) DeepCopyInto(out *PacketCloud)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PacketConstraints ¶
type PacketConstraints struct { // DNSProviders contains constraints regarding allowed values of the 'dns.provider' block in the Shoot specification. DNSProviders []DNSProviderConstraint // Kubernetes contains constraints regarding allowed values of the 'kubernetes' block in the Shoot specification. Kubernetes KubernetesConstraints // MachineImages contains constraints regarding allowed values for machine images in the Shoot specification. MachineImages []MachineImage // MachineTypes contains constraints regarding allowed values for machine types in the 'workers' block in the Shoot specification. MachineTypes []MachineType // VolumeTypes contains constraints regarding allowed values for volume types in the 'workers' block in the Shoot specification. VolumeTypes []VolumeType // Zones contains constraints regarding allowed values for 'zones' block in the Shoot specification. Zones []Zone }
PacketConstraints is an object containing constraints for certain values in the Shoot specification
func (*PacketConstraints) DeepCopy ¶
func (in *PacketConstraints) DeepCopy() *PacketConstraints
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PacketConstraints.
func (*PacketConstraints) DeepCopyInto ¶
func (in *PacketConstraints) DeepCopyInto(out *PacketConstraints)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PacketNetworks ¶
type PacketNetworks struct {
gardencore.K8SNetworks
}
PacketNetworks holds information about the Kubernetes and infrastructure networks.
func (*PacketNetworks) DeepCopy ¶
func (in *PacketNetworks) DeepCopy() *PacketNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PacketNetworks.
func (*PacketNetworks) DeepCopyInto ¶
func (in *PacketNetworks) DeepCopyInto(out *PacketNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PacketProfile ¶
type PacketProfile struct { // Constraints is an object containing constraints for certain values in the Shoot specification. Constraints PacketConstraints }
PacketProfile defines constraints and definitions in Packet Cloud environment.
func (*PacketProfile) DeepCopy ¶
func (in *PacketProfile) DeepCopy() *PacketProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PacketProfile.
func (*PacketProfile) DeepCopyInto ¶
func (in *PacketProfile) DeepCopyInto(out *PacketProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PacketWorker ¶
type PacketWorker struct { Worker // VolumeType is the type of the root volumes. VolumeType string // VolumeSize is the size of the root volume. VolumeSize string }
PacketWorker is the definition of a worker group.
func (*PacketWorker) DeepCopy ¶
func (in *PacketWorker) DeepCopy() *PacketWorker
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PacketWorker.
func (*PacketWorker) DeepCopyInto ¶
func (in *PacketWorker) DeepCopyInto(out *PacketWorker)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Project ¶
type Project struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Spec defines the project properties. // +optional Spec ProjectSpec // Most recently observed status of the Project. // +optional Status ProjectStatus }
Project holds certain properties about a Gardener project.
func (*Project) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Project.
func (*Project) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Project) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ProjectList ¶
type ProjectList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of Projects. Items []Project }
ProjectList is a collection of Projects.
func (*ProjectList) DeepCopy ¶
func (in *ProjectList) DeepCopy() *ProjectList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectList.
func (*ProjectList) DeepCopyInto ¶
func (in *ProjectList) DeepCopyInto(out *ProjectList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProjectList) DeepCopyObject ¶
func (in *ProjectList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ProjectPhase ¶
type ProjectPhase string
ProjectPhase is a label for the condition of a project at the current time.
const ( // ProjectPending indicates that the project reconciliation is pending. ProjectPending ProjectPhase = "Pending" // ProjectReady indicates that the project reconciliation was successful. ProjectReady ProjectPhase = "Ready" // ProjectFailed indicates that the project reconciliation failed. ProjectFailed ProjectPhase = "Failed" // ProjectTerminating indicates that the project is in termination process. ProjectTerminating ProjectPhase = "Terminating" )
type ProjectSpec ¶
type ProjectSpec struct { // CreatedBy is a subject representing a user name, an email address, or any other identifier of a user // who created the project. // +optional CreatedBy *rbacv1.Subject // Description is a human-readable description of what the project is used for. // +optional Description *string // Owner is a subject representing a user name, an email address, or any other identifier of a user owning // the project. // +optional Owner *rbacv1.Subject // Purpose is a human-readable explanation of the project's purpose. // +optional Purpose *string // Members is a list of subjects representing a user name, an email address, or any other identifier of a user // that should be part of this project with full permissions to manage it. // +optional Members []rbacv1.Subject // Namespace is the name of the namespace that has been created for the Project object. // +optional Namespace *string // Viewers is a list of subjects representing a user name, an email address, or any other identifier of a user // that should be part of this project with limited permissions to only view some resources. Viewers []rbacv1.Subject `json:"viewers,omitempty"` }
ProjectSpec is the specification of a Project.
func (*ProjectSpec) DeepCopy ¶
func (in *ProjectSpec) DeepCopy() *ProjectSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectSpec.
func (*ProjectSpec) DeepCopyInto ¶
func (in *ProjectSpec) DeepCopyInto(out *ProjectSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProjectStatus ¶
type ProjectStatus struct { // ObservedGeneration is the most recent generation observed for this project. // +optional ObservedGeneration int64 // Phase is the current phase of the project. Phase ProjectPhase }
ProjectStatus holds the most recently observed status of the project.
func (*ProjectStatus) DeepCopy ¶
func (in *ProjectStatus) DeepCopy() *ProjectStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectStatus.
func (*ProjectStatus) DeepCopyInto ¶
func (in *ProjectStatus) DeepCopyInto(out *ProjectStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProxyMode ¶
type ProxyMode string
ProxyMode available in Linux platform: 'userspace' (older, going to be EOL), 'iptables' (newer, faster), 'ipvs'(newest, better in performance and scalability).
As of now only 'iptables' and 'ipvs' is supported by Gardener.
In Linux platform, if the iptables proxy is selected, regardless of how, but the system's kernel or iptables versions are insufficient, this always falls back to the userspace proxy. IPVS mode will be enabled when proxy mode is set to 'ipvs', and the fall back path is firstly iptables and then userspace.
type Quota ¶
type Quota struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Spec defines the Quota constraints. // +optional Spec QuotaSpec }
Quota holds certain information about resource usage limitations and lifetime for Shoot objects.
func (*Quota) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Quota.
func (*Quota) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Quota) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type QuotaList ¶
type QuotaList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of Quotas. Items []Quota }
QuotaList is a collection of Quotas.
func (*QuotaList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuotaList.
func (*QuotaList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*QuotaList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type QuotaScope ¶
type QuotaScope string
QuotaScope is a string alias.
const ( // QuotaScopeProject indicates that the scope of a Quota object is a project. QuotaScopeProject QuotaScope = "project" // QuotaScopeSecret indicates that the scope of a Quota object is a cloud provider secret. QuotaScopeSecret QuotaScope = "secret" )
type QuotaSpec ¶
type QuotaSpec struct { // ClusterLifetimeDays is the lifetime of a Shoot cluster in days before it will be terminated automatically. // +optional ClusterLifetimeDays *int // Metrics is a list of resources which will be put under constraints. Metrics corev1.ResourceList // Scope is the scope of the Quota object, either 'project' or 'secret'. Scope QuotaScope }
QuotaSpec is the specification of a Quota.
func (*QuotaSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuotaSpec.
func (*QuotaSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecretBinding ¶
type SecretBinding struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // SecretRef is a reference to a secret object in the same or another namespace. SecretRef corev1.SecretReference // Quotas is a list of references to Quota objects in the same or another namespace. // +optional Quotas []corev1.ObjectReference }
func (*SecretBinding) DeepCopy ¶
func (in *SecretBinding) DeepCopy() *SecretBinding
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretBinding.
func (*SecretBinding) DeepCopyInto ¶
func (in *SecretBinding) DeepCopyInto(out *SecretBinding)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SecretBinding) DeepCopyObject ¶
func (in *SecretBinding) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SecretBindingList ¶
type SecretBindingList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of SecretBindings. Items []SecretBinding }
SecretBindingList is a collection of SecretBindings.
func (*SecretBindingList) DeepCopy ¶
func (in *SecretBindingList) DeepCopy() *SecretBindingList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretBindingList.
func (*SecretBindingList) DeepCopyInto ¶
func (in *SecretBindingList) DeepCopyInto(out *SecretBindingList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SecretBindingList) DeepCopyObject ¶
func (in *SecretBindingList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type Seed ¶
type Seed struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Spec defines the Seed cluster properties. // +optional Spec SeedSpec // Most recently observed status of the Seed cluster. // +optional Status SeedStatus }
Seed holds certain properties about a Seed cluster.
func (*Seed) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Seed.
func (*Seed) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Seed) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SeedCloud ¶
type SeedCloud struct { // Profile is the name of a cloud profile. Profile string // Region is a name of a region. Region string }
SeedCloud defines the cloud profile and the region this Seed cluster belongs to.
func (*SeedCloud) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedCloud.
func (*SeedCloud) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedList ¶
type SeedList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of Seeds. Items []Seed }
SeedList is a collection of Seeds.
func (*SeedList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedList.
func (*SeedList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SeedList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SeedNetworks ¶
type SeedNetworks struct { // Nodes is the CIDR of the node network. Nodes gardencore.CIDR // Pods is the CIDR of the pod network. Pods gardencore.CIDR // Services is the CIDR of the service network. Services gardencore.CIDR }
SeedNetworks contains CIDRs for the pod, service and node networks of a Kubernetes cluster.
func (*SeedNetworks) DeepCopy ¶
func (in *SeedNetworks) DeepCopy() *SeedNetworks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedNetworks.
func (*SeedNetworks) DeepCopyInto ¶
func (in *SeedNetworks) DeepCopyInto(out *SeedNetworks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedSpec ¶
type SeedSpec struct { // Cloud defines the cloud profile and the region this Seed cluster belongs to. Cloud SeedCloud // IngressDomain is the domain of the Seed cluster pointing to the ingress controller endpoint. It will be used // to construct ingress URLs for system applications running in Shoot clusters. IngressDomain string // SecretRef is a reference to a Secret object containing the Kubeconfig and the cloud provider credentials for // the account the Seed cluster has been deployed to. SecretRef corev1.SecretReference // Networks defines the pod, service and worker network of the Seed cluster. Networks SeedNetworks // BlockCIDRs is a list of network addresses tha should be blocked for shoot control plane components running // in the seed cluster. BlockCIDRs []gardencore.CIDR // Visible labels the Seed cluster as selectable for the seedfinder admission controller. // +optional Visible *bool // Protected prevent that the Seed Cluster can be used for regular Shoot cluster control planes. // +optional Protected *bool }
SeedSpec is the specification of a Seed.
func (*SeedSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedSpec.
func (*SeedSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedStatus ¶
type SeedStatus struct { // Conditions represents the latest available observations of a Seed's current state. // +optional Conditions []gardencore.Condition // Gardener holds information about the Gardener which last acted on the Seed. Gardener Gardener // ObservedGeneration is the most recent generation observed for this Seed. It corresponds to the // Seed's generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 }
SeedStatus holds the most recently observed status of the Seed cluster.
func (*SeedStatus) DeepCopy ¶
func (in *SeedStatus) DeepCopy() *SeedStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedStatus.
func (*SeedStatus) DeepCopyInto ¶
func (in *SeedStatus) DeepCopyInto(out *SeedStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Shoot ¶
type Shoot struct { metav1.TypeMeta // Standard object metadata. // +optional metav1.ObjectMeta // Specification of the Shoot cluster. // +optional Spec ShootSpec // Most recently observed status of the Shoot cluster. // +optional Status ShootStatus }
func (*Shoot) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Shoot.
func (*Shoot) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Shoot) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ShootList ¶
type ShootList struct { metav1.TypeMeta // Standard list object metadata. // +optional metav1.ListMeta // Items is the list of Shoots. Items []Shoot }
ShootList is a list of Shoot objects.
func (*ShootList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootList.
func (*ShootList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ShootList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ShootSpec ¶
type ShootSpec struct { // Addons contains information about enabled/disabled addons and their configuration. // +optional Addons *Addons // DEPRECATED: This field will be removed in a future version. // +optional Backup *Backup // Cloud contains information about the cloud environment and their specific settings. Cloud Cloud // DNS contains information about the DNS settings of the Shoot. DNS DNS // Extensions contain type and provider information for Shoot extensions. Extensions []Extension // Hibernation contains information whether the Shoot is suspended or not. // +optional Hibernation *Hibernation // Kubernetes contains the version and configuration settings of the control plane components. Kubernetes Kubernetes // Maintenance contains information about the time window for maintenance operations and which // operations should be performed. // +optional Maintenance *Maintenance }
ShootSpec is the specification of a Shoot.
func (*ShootSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootSpec.
func (*ShootSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ShootStatus ¶
type ShootStatus struct { // Conditions represents the latest available observations of a Shoots's current state. // +optional Conditions []gardencore.Condition // Gardener holds information about the Gardener which last acted on the Shoot. Gardener Gardener // LastOperation holds information about the last operation on the Shoot. // +optional LastOperation *gardencore.LastOperation // LastError holds information about the last occurred error during an operation. // +optional LastError *gardencore.LastError // ObservedGeneration is the most recent generation observed for this Shoot. It corresponds to the // Shoot's generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 // RetryCycleStartTime is the start time of the last retry cycle (used to determine how often an operation // must be retried until we give up). // +optional RetryCycleStartTime *metav1.Time // Seed is the name of the seed cluster that runs the control plane of the Shoot. This value is only written // after a successful create/reconcile operation. It will be used when control planes are moved between Seeds. Seed string // TechnicalID is the name that is used for creating the Seed namespace, the infrastructure resources, and // basically everything that is related to this particular Shoot. TechnicalID string // UID is a unique identifier for the Shoot cluster to avoid portability between Kubernetes clusters. // It is used to compute unique hashes. UID types.UID }
ShootStatus holds the most recently observed status of the Shoot cluster.
func (*ShootStatus) DeepCopy ¶
func (in *ShootStatus) DeepCopy() *ShootStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootStatus.
func (*ShootStatus) DeepCopyInto ¶
func (in *ShootStatus) DeepCopyInto(out *ShootStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type VolumeType ¶
type VolumeType struct { // Name is the name of the volume type. Name string // Usable defines if the volume type can be used for shoot clusters. // +optional Usable *bool // Class is the class of the volume type. Class string }
VolumeType contains certain properties of a volume type.
func (*VolumeType) DeepCopy ¶
func (in *VolumeType) DeepCopy() *VolumeType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeType.
func (*VolumeType) DeepCopyInto ¶
func (in *VolumeType) DeepCopyInto(out *VolumeType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Worker ¶
type Worker struct { // Name is the name of the worker group. Name string // MachineType is the machine type of the worker group. MachineType string // AutoScalerMin is the minimum number of VMs to create. AutoScalerMin int // AutoScalerMin is the maximum number of VMs to create. AutoScalerMax int // MaxSurge is maximum number of VMs that are created during an update. MaxSurge intstr.IntOrString MaxUnavailable intstr.IntOrString // Annotations is a map of key/value pairs for annotations for all the `Node` objects in this worker pool. Annotations map[string]string // Labels is a map of key/value pairs for labels for all the `Node` objects in this worker pool. Labels map[string]string // Taints is a list of taints for all the `Node` objects in this worker pool. Taints []corev1.Taint }
Worker is the base definition of a worker group.
func (*Worker) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Worker.
func (*Worker) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Zone ¶
type Zone struct { // Region is a region name. Region string // Names is a list of availability zone names in this region. Names []string }
Zone contains certain properties of an availability zone.
func (*Zone) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Zone.
func (*Zone) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.