v1alpha1

package
v0.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 12, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Overview

Package v1alpha1 contains the ironcore provider configuration API resources. +groupName= ironcore.provider.extensions.config.gardener.cloud

Index

Constants

View Source
const GroupName = "ironcore.provider.extensions.config.gardener.cloud"

GroupName is the group name use in this package

Variables

View Source
var (
	// SchemeBuilder used to register the Shoot resource.
	SchemeBuilder runtime.SchemeBuilder

	// AddToScheme is a pointer to SchemeBuilder.AddToScheme.
	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Convert_config_BackupBucketConfig_To_v1alpha1_BackupBucketConfig

func Convert_config_BackupBucketConfig_To_v1alpha1_BackupBucketConfig(in *config.BackupBucketConfig, out *BackupBucketConfig, s conversion.Scope) error

Convert_config_BackupBucketConfig_To_v1alpha1_BackupBucketConfig is an autogenerated conversion function.

func Convert_config_BastionConfig_To_v1alpha1_BastionConfig

func Convert_config_BastionConfig_To_v1alpha1_BastionConfig(in *config.BastionConfig, out *BastionConfig, s conversion.Scope) error

Convert_config_BastionConfig_To_v1alpha1_BastionConfig is an autogenerated conversion function.

func Convert_config_ControllerConfiguration_To_v1alpha1_ControllerConfiguration

func Convert_config_ControllerConfiguration_To_v1alpha1_ControllerConfiguration(in *config.ControllerConfiguration, out *ControllerConfiguration, s conversion.Scope) error

Convert_config_ControllerConfiguration_To_v1alpha1_ControllerConfiguration is an autogenerated conversion function.

func Convert_config_ETCDBackup_To_v1alpha1_ETCDBackup

func Convert_config_ETCDBackup_To_v1alpha1_ETCDBackup(in *config.ETCDBackup, out *ETCDBackup, s conversion.Scope) error

Convert_config_ETCDBackup_To_v1alpha1_ETCDBackup is an autogenerated conversion function.

func Convert_config_ETCDStorage_To_v1alpha1_ETCDStorage

func Convert_config_ETCDStorage_To_v1alpha1_ETCDStorage(in *config.ETCDStorage, out *ETCDStorage, s conversion.Scope) error

Convert_config_ETCDStorage_To_v1alpha1_ETCDStorage is an autogenerated conversion function.

func Convert_config_ETCD_To_v1alpha1_ETCD

func Convert_config_ETCD_To_v1alpha1_ETCD(in *config.ETCD, out *ETCD, s conversion.Scope) error

Convert_config_ETCD_To_v1alpha1_ETCD is an autogenerated conversion function.

func Convert_v1alpha1_BackupBucketConfig_To_config_BackupBucketConfig

func Convert_v1alpha1_BackupBucketConfig_To_config_BackupBucketConfig(in *BackupBucketConfig, out *config.BackupBucketConfig, s conversion.Scope) error

Convert_v1alpha1_BackupBucketConfig_To_config_BackupBucketConfig is an autogenerated conversion function.

func Convert_v1alpha1_BastionConfig_To_config_BastionConfig

func Convert_v1alpha1_BastionConfig_To_config_BastionConfig(in *BastionConfig, out *config.BastionConfig, s conversion.Scope) error

Convert_v1alpha1_BastionConfig_To_config_BastionConfig is an autogenerated conversion function.

func Convert_v1alpha1_ControllerConfiguration_To_config_ControllerConfiguration

func Convert_v1alpha1_ControllerConfiguration_To_config_ControllerConfiguration(in *ControllerConfiguration, out *config.ControllerConfiguration, s conversion.Scope) error

Convert_v1alpha1_ControllerConfiguration_To_config_ControllerConfiguration is an autogenerated conversion function.

func Convert_v1alpha1_ETCDBackup_To_config_ETCDBackup

func Convert_v1alpha1_ETCDBackup_To_config_ETCDBackup(in *ETCDBackup, out *config.ETCDBackup, s conversion.Scope) error

Convert_v1alpha1_ETCDBackup_To_config_ETCDBackup is an autogenerated conversion function.

func Convert_v1alpha1_ETCDStorage_To_config_ETCDStorage

func Convert_v1alpha1_ETCDStorage_To_config_ETCDStorage(in *ETCDStorage, out *config.ETCDStorage, s conversion.Scope) error

Convert_v1alpha1_ETCDStorage_To_config_ETCDStorage is an autogenerated conversion function.

func Convert_v1alpha1_ETCD_To_config_ETCD

func Convert_v1alpha1_ETCD_To_config_ETCD(in *ETCD, out *config.ETCD, s conversion.Scope) error

Convert_v1alpha1_ETCD_To_config_ETCD is an autogenerated conversion function.

func RegisterConversions

func RegisterConversions(s *runtime.Scheme) error

RegisterConversions adds conversion functions to the given scheme. Public to allow building arbitrary schemes.

func RegisterDefaults

func RegisterDefaults(scheme *runtime.Scheme) error

RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type BackupBucketConfig

type BackupBucketConfig struct {
	// BucketClassName is the name of the ironcore BucketClass to use for the BackupBucket
	BucketClassName string `json:"bucketClassName,omitempty"`
}

BackupBucketConfig is config for Backup Bucket

func (*BackupBucketConfig) DeepCopy

func (in *BackupBucketConfig) DeepCopy() *BackupBucketConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupBucketConfig.

func (*BackupBucketConfig) DeepCopyInto

func (in *BackupBucketConfig) DeepCopyInto(out *BackupBucketConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type BastionConfig

type BastionConfig struct {
	// Image is the URL pointing to an OCI registry containing the operating system image which should be used to boot the Bastion host
	Image string `json:"image,omitempty"`
	// MachineClassName is the name of the ironcore MachineClass to use for the Bastion host
	MachineClassName string `json:"machineClassName,omitempty"`
	// VolumeClassName is the name of the ironcore VolumeClass to use for the Bastion host root disk volume
	VolumeClassName string `json:"volumeClassName,omitempty"`
}

BastionConfig is the config for the Bastion

func (*BastionConfig) DeepCopy

func (in *BastionConfig) DeepCopy() *BastionConfig

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BastionConfig.

func (*BastionConfig) DeepCopyInto

func (in *BastionConfig) DeepCopyInto(out *BastionConfig)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ControllerConfiguration

type ControllerConfiguration struct {
	metav1.TypeMeta `json:",inline"`

	// ClientConnection specifies the kubeconfig file and client connection
	// settings for the proxy server to use when communicating with the apiserver.
	// +optional
	ClientConnection *componentbaseconfigv1alpha1.ClientConnectionConfiguration `json:"clientConnection,omitempty"`
	// ETCD is the etcd configuration.
	ETCD ETCD `json:"etcd"`
	// HealthCheckConfig is the config for the health check controller
	// +optional
	HealthCheckConfig *healthcheckconfigv1alpha1.HealthCheckConfig `json:"healthCheckConfig,omitempty"`
	// FeatureGates is a map of feature names to bools that enable
	// or disable alpha/experimental features.
	// Default: nil
	// +optional
	FeatureGates map[string]bool `json:"featureGates,omitempty"`
	// BastionConfig is the config for the Bastion
	// +optional
	BastionConfig *BastionConfig `json:"bastionConfig,omitempty"`
	// BackupBucketConfig is config for Backup Bucket
	BackupBucketConfig *BackupBucketConfig `json:"backupBucketConfig,omitempty"`
}

ControllerConfiguration defines the configuration for the ironcore provider.

func (*ControllerConfiguration) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerConfiguration.

func (*ControllerConfiguration) DeepCopyInto

func (in *ControllerConfiguration) DeepCopyInto(out *ControllerConfiguration)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ControllerConfiguration) DeepCopyObject

func (in *ControllerConfiguration) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type ETCD

type ETCD struct {
	// ETCDStorage is the etcd storage configuration.
	Storage ETCDStorage `json:"storage"`
	// ETCDBackup is the etcd backup configuration.
	Backup ETCDBackup `json:"backup"`
}

ETCD is an etcd configuration.

func (*ETCD) DeepCopy

func (in *ETCD) DeepCopy() *ETCD

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCD.

func (*ETCD) DeepCopyInto

func (in *ETCD) DeepCopyInto(out *ETCD)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ETCDBackup

type ETCDBackup struct {
	// Schedule is the etcd backup schedule.
	// +optional
	Schedule *string `json:"schedule,omitempty"`
}

ETCDBackup is an etcd backup configuration.

func (*ETCDBackup) DeepCopy

func (in *ETCDBackup) DeepCopy() *ETCDBackup

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDBackup.

func (*ETCDBackup) DeepCopyInto

func (in *ETCDBackup) DeepCopyInto(out *ETCDBackup)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ETCDStorage

type ETCDStorage struct {
	// ClassName is the name of the storage class used in etcd-main volume claims.
	// +optional
	ClassName *string `json:"className,omitempty"`
	// Capacity is the storage capacity used in etcd-main volume claims.
	// +optional
	Capacity *resource.Quantity `json:"capacity,omitempty"`
}

ETCDStorage is an etcd storage configuration.

func (*ETCDStorage) DeepCopy

func (in *ETCDStorage) DeepCopy() *ETCDStorage

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ETCDStorage.

func (*ETCDStorage) DeepCopyInto

func (in *ETCDStorage) DeepCopyInto(out *ETCDStorage)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL