Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CloudBotanist ¶
type CloudBotanist interface { GetCloudProviderName() string // Infrastructure DeployBackupInfrastructure() error DestroyBackupInfrastructure() error // Control Plane GenerateCloudProviderConfig() (string, error) RefreshCloudProviderConfig(map[string]string) map[string]string GenerateCloudConfigUserDataConfig() *common.CloudConfigUserDataConfig GenerateETCDStorageClassConfig() map[string]interface{} GenerateEtcdBackupConfig() (map[string][]byte, map[string]interface{}, error) GenerateKubeAPIServerServiceConfig() (map[string]interface{}, error) GenerateKubeAPIServerExposeConfig() (map[string]interface{}, error) GenerateKubeAPIServerConfig() (map[string]interface{}, error) GenerateCloudControllerManagerConfig() (map[string]interface{}, string, error) GenerateKubeControllerManagerConfig() (map[string]interface{}, error) GenerateKubeSchedulerConfig() (map[string]interface{}, error) DeployCloudSpecificControlPlane() error GenerateCSIConfig() (map[string]interface{}, error) // Addons DeployKube2IAMResources() error DestroyKube2IAMResources() error GenerateKube2IAMConfig() (map[string]interface{}, error) GenerateStorageClassesConfig() (map[string]interface{}, error) GenerateNginxIngressConfig() (map[string]interface{}, error) GenerateVPNShootConfig() (map[string]interface{}, error) }
CloudBotanist is an interface which must be implemented by cloud-specific Botanists. The Cloud Botanist is responsible for all operations which require IaaS specific knowledge.
func New ¶
func New(o *operation.Operation, purpose string) (CloudBotanist, error)
New creates a Cloud Botanist for the specific cloud provider of the operation. The Cloud Botanist is responsible for all operations which require IaaS specific knowledge. We store the infrastructure credentials on the Botanist object for later usage so that we do not need to read the IaaS Secret again.
Click to show internal directories.
Click to hide internal directories.