Documentation ¶
Index ¶
- Variables
- func ComputeOperationType(meta metav1.ObjectMeta, lastOperation *gardencorev1beta1.LastOperation) gardencorev1beta1.LastOperationType
- func ConditionsNeedUpdate(existingConditions, newConditions []gardencorev1beta1.Condition) bool
- func DetermineError(message string) error
- func DetermineLatestKubernetesPatchVersion(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, string, error)
- func DetermineLatestMachineImageVersion(image gardencorev1beta1.MachineImage) (*semver.Version, gardencorev1beta1.ExpirableVersion, error)
- func DetermineMachineImageForName(cloudProfile *gardencorev1beta1.CloudProfile, name string) (bool, gardencorev1beta1.MachineImage, error)
- func DetermineNextKubernetesMinorVersion(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, string, error)
- func ExtractErrorCodes(err error) []gardencorev1beta1.ErrorCode
- func FormatLastErrDescription(err error) string
- func GetCondition(conditions []gardencorev1beta1.Condition, ...) *gardencorev1beta1.Condition
- func GetDefaultMachineImageFromCloudProfile(profile gardencorev1beta1.CloudProfile) *gardencorev1beta1.MachineImage
- func GetOrInitCondition(conditions []gardencorev1beta1.Condition, ...) gardencorev1beta1.Condition
- func GetShootMachineImageFromLatestMachineImageVersion(image gardencorev1beta1.MachineImage) (*semver.Version, gardencorev1beta1.ShootMachineImage, error)
- func HibernationIsEnabled(shoot *gardencorev1beta1.Shoot) bool
- func InitCondition(conditionType gardencorev1beta1.ConditionType) gardencorev1beta1.Condition
- func IsControllerInstallationSuccessful(controllerInstallation gardencorev1beta1.ControllerInstallation) bool
- func IsResourceSupported(resources []gardencorev1beta1.ControllerResource, ...) bool
- func KubernetesVersionExistsInCloudProfile(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, gardencorev1beta1.ExpirableVersion, error)
- func LastError(description string, codes ...gardencorev1beta1.ErrorCode) *gardencorev1beta1.LastError
- func LastErrorWithTaskID(description string, taskID string, codes ...gardencorev1beta1.ErrorCode) *gardencorev1beta1.LastError
- func MergeConditions(oldConditions []gardencorev1beta1.Condition, ...) []gardencorev1beta1.Condition
- func NewConditions(conditions []gardencorev1beta1.Condition, ...) []*gardencorev1beta1.Condition
- func NewErrorWithCode(code gardencorev1beta1.ErrorCode, message string) error
- func SetMachineImageVersionsToMachineImage(machineImages []gardencorev1beta1.MachineImage, imageName string, ...) ([]gardencorev1beta1.MachineImage, error)
- func ShootIgnoresAlerts(shoot *gardencorev1beta1.Shoot) bool
- func ShootMachineImageVersionExists(constraint gardencorev1beta1.MachineImage, ...) (bool, int)
- func ShootWantsBasicAuthentication(shoot *gardencorev1beta1.Shoot) bool
- func ShootWantsClusterAutoscaler(shoot *gardencorev1beta1.Shoot) (bool, error)
- func TaintsHave(taints []gardencorev1beta1.SeedTaint, key string) bool
- func UpdateMachineImages(workers []gardencorev1beta1.Worker, ...)
- func UpdatedCondition(condition gardencorev1beta1.Condition, ...) gardencorev1beta1.Condition
- func UpdatedConditionUnknownError(condition gardencorev1beta1.Condition, err error) gardencorev1beta1.Condition
- func UpdatedConditionUnknownErrorMessage(condition gardencorev1beta1.Condition, message string) gardencorev1beta1.Condition
- type Coder
- type ShootedSeed
- type ShootedSeedAPIServer
- type ShootedSeedAPIServerAutoscaler
- type WrappedLastErrors
Constants ¶
This section is empty.
Variables ¶
var Now = metav1.Now
Now determines the current metav1.Time.
Functions ¶
func ComputeOperationType ¶
func ComputeOperationType(meta metav1.ObjectMeta, lastOperation *gardencorev1beta1.LastOperation) gardencorev1beta1.LastOperationType
ComputeOperationType checksthe <lastOperation> and determines whether is it is Create operation or reconcile operation
func ConditionsNeedUpdate ¶
func ConditionsNeedUpdate(existingConditions, newConditions []gardencorev1beta1.Condition) bool
ConditionsNeedUpdate returns true if the <existingConditions> must be updated based on <newConditions>.
func DetermineError ¶
DetermineError determines the Garden error code for the given error message.
func DetermineLatestKubernetesPatchVersion ¶
func DetermineLatestKubernetesPatchVersion(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, string, error)
DetermineLatestKubernetesPatchVersion finds the latest Kubernetes patch version in the <cloudProfile> compared to the given <currentVersion>. In case it does not find a newer patch version, it returns false. Otherwise, true and the found version will be returned.
func DetermineLatestMachineImageVersion ¶
func DetermineLatestMachineImageVersion(image gardencorev1beta1.MachineImage) (*semver.Version, gardencorev1beta1.ExpirableVersion, error)
DetermineLatestMachineImageVersion determines the latest MachineImageVersion from a MachineImage
func DetermineMachineImageForName ¶
func DetermineMachineImageForName(cloudProfile *gardencorev1beta1.CloudProfile, name string) (bool, gardencorev1beta1.MachineImage, error)
DetermineMachineImageForName finds the cloud specific machine images in the <cloudProfile> for the given <name> and region. In case it does not find the machine image with the <name>, it returns false. Otherwise, true and the cloud-specific machine image will be returned.
func DetermineNextKubernetesMinorVersion ¶
func DetermineNextKubernetesMinorVersion(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, string, error)
DetermineNextKubernetesMinorVersion finds the next available Kubernetes minor version in the <cloudProfile> compared to the given <currentVersion>. In case it does not find a newer minor version, it returns false. Otherwise, true and the found version will be returned.
func ExtractErrorCodes ¶
func ExtractErrorCodes(err error) []gardencorev1beta1.ErrorCode
ExtractErrorCodes extracts all error codes from the given error by using utils.Errors
func FormatLastErrDescription ¶
FormatLastErrDescription formats the error message string for the last occurred error.
func GetCondition ¶
func GetCondition(conditions []gardencorev1beta1.Condition, conditionType gardencorev1beta1.ConditionType) *gardencorev1beta1.Condition
GetCondition returns the condition with the given <conditionType> out of the list of <conditions>. In case the required type could not be found, it returns nil.
func GetDefaultMachineImageFromCloudProfile ¶
func GetDefaultMachineImageFromCloudProfile(profile gardencorev1beta1.CloudProfile) *gardencorev1beta1.MachineImage
GetDefaultMachineImageFromCloudProfile gets the first MachineImage from the CloudProfile
func GetOrInitCondition ¶
func GetOrInitCondition(conditions []gardencorev1beta1.Condition, conditionType gardencorev1beta1.ConditionType) gardencorev1beta1.Condition
GetOrInitCondition tries to retrieve the condition with the given condition type from the given conditions. If the condition could not be found, it returns an initialized condition of the given type.
func GetShootMachineImageFromLatestMachineImageVersion ¶
func GetShootMachineImageFromLatestMachineImageVersion(image gardencorev1beta1.MachineImage) (*semver.Version, gardencorev1beta1.ShootMachineImage, error)
GetShootMachineImageFromLatestMachineImageVersion determines the latest version in a machine image and returns that as a ShootMachineImage
func HibernationIsEnabled ¶
func HibernationIsEnabled(shoot *gardencorev1beta1.Shoot) bool
HibernationIsEnabled checks if the given shoot's desired state is hibernated.
func InitCondition ¶
func InitCondition(conditionType gardencorev1beta1.ConditionType) gardencorev1beta1.Condition
InitCondition initializes a new Condition with an Unknown status.
func IsControllerInstallationSuccessful ¶
func IsControllerInstallationSuccessful(controllerInstallation gardencorev1beta1.ControllerInstallation) bool
IsControllerInstallationSuccessful returns true if a ControllerInstallation has been marked as "successfully" installed.
func IsResourceSupported ¶
func IsResourceSupported(resources []gardencorev1beta1.ControllerResource, resourceKind, resourceType string) bool
IsResourceSupported returns true if a given combination of kind/type is part of a controller resources list.
func KubernetesVersionExistsInCloudProfile ¶
func KubernetesVersionExistsInCloudProfile(cloudProfile *gardencorev1beta1.CloudProfile, currentVersion string) (bool, gardencorev1beta1.ExpirableVersion, error)
KubernetesVersionExistsInCloudProfile checks if the given Kubernetes version exists in the CloudProfile
func LastError ¶
func LastError(description string, codes ...gardencorev1beta1.ErrorCode) *gardencorev1beta1.LastError
LastError creates a new LastError with the given description, optional codes and sets timestamp when the error is lastly observed.
func LastErrorWithTaskID ¶
func LastErrorWithTaskID(description string, taskID string, codes ...gardencorev1beta1.ErrorCode) *gardencorev1beta1.LastError
LastErrorWithTaskID creates a new LastError with the given description, the ID of the task when the error occurred, optional codes and sets timestamp when the error is lastly observed.
func MergeConditions ¶
func MergeConditions(oldConditions []gardencorev1beta1.Condition, newConditions ...gardencorev1beta1.Condition) []gardencorev1beta1.Condition
MergeConditions merges the given <oldConditions> with the <newConditions>. Existing conditions are superseded by the <newConditions> (depending on the condition type).
func NewConditions ¶
func NewConditions(conditions []gardencorev1beta1.Condition, conditionTypes ...gardencorev1beta1.ConditionType) []*gardencorev1beta1.Condition
NewConditions initializes the provided conditions based on an existing list. If a condition type does not exist in the list yet, it will be set to default values.
func NewErrorWithCode ¶
func NewErrorWithCode(code gardencorev1beta1.ErrorCode, message string) error
NewErrorWithCode creates a new error that additionally exposes the given code via the Coder interface.
func SetMachineImageVersionsToMachineImage ¶
func SetMachineImageVersionsToMachineImage(machineImages []gardencorev1beta1.MachineImage, imageName string, imageVersions []gardencorev1beta1.ExpirableVersion) ([]gardencorev1beta1.MachineImage, error)
SetMachineImageVersionsToMachineImage sets imageVersions to the matching imageName in the machineImages.
func ShootIgnoresAlerts ¶
func ShootIgnoresAlerts(shoot *gardencorev1beta1.Shoot) bool
ShootIgnoresAlerts checks if the alerts for the annotated shoot cluster should be ignored.
func ShootMachineImageVersionExists ¶
func ShootMachineImageVersionExists(constraint gardencorev1beta1.MachineImage, image gardencorev1beta1.ShootMachineImage) (bool, int)
ShootMachineImageVersionExists checks if the shoot machine image (name, version) exists in the machine image constraint and returns true if yes and the index in the versions slice
func ShootWantsBasicAuthentication ¶
func ShootWantsBasicAuthentication(shoot *gardencorev1beta1.Shoot) bool
ShootWantsBasicAuthentication returns true if basic authentication is not configured or if it is set explicitly to 'true'.
func ShootWantsClusterAutoscaler ¶
func ShootWantsClusterAutoscaler(shoot *gardencorev1beta1.Shoot) (bool, error)
ShootWantsClusterAutoscaler checks if the given Shoot needs a cluster autoscaler. This is determined by checking whether one of the Shoot workers has a different Maximum than Minimum.
func TaintsHave ¶
func TaintsHave(taints []gardencorev1beta1.SeedTaint, key string) bool
TaintsHave returns true if the given key is part of the taints list.
func UpdateMachineImages ¶
func UpdateMachineImages(workers []gardencorev1beta1.Worker, machineImages []*gardencorev1beta1.ShootMachineImage)
UpdateMachineImages updates the machine images in place.
func UpdatedCondition ¶
func UpdatedCondition(condition gardencorev1beta1.Condition, status gardencorev1beta1.ConditionStatus, reason, message string) gardencorev1beta1.Condition
UpdatedCondition updates the properties of one specific condition.
func UpdatedConditionUnknownError ¶
func UpdatedConditionUnknownError(condition gardencorev1beta1.Condition, err error) gardencorev1beta1.Condition
func UpdatedConditionUnknownErrorMessage ¶
func UpdatedConditionUnknownErrorMessage(condition gardencorev1beta1.Condition, message string) gardencorev1beta1.Condition
Types ¶
type Coder ¶
type Coder interface { error Code() gardencorev1beta1.ErrorCode }
Coder is an error that may produce an ErrorCode visible to the outside.
type ShootedSeed ¶
type ShootedSeed struct { Protected *bool Visible *bool MinimumVolumeSize *string APIServer *ShootedSeedAPIServer BlockCIDRs []string ShootDefaults *gardencorev1beta1.ShootNetworks Backup *gardencorev1beta1.SeedBackup }
func ReadShootedSeed ¶
func ReadShootedSeed(shoot *gardencorev1beta1.Shoot) (*ShootedSeed, error)
ReadShootedSeed determines whether the Shoot has been marked to be registered automatically as a Seed cluster.
type ShootedSeedAPIServer ¶
type ShootedSeedAPIServer struct { Replicas *int32 Autoscaler *ShootedSeedAPIServerAutoscaler }
type WrappedLastErrors ¶
type WrappedLastErrors struct { Description string LastErrors []gardencorev1beta1.LastError }
WrappedLastErrors is a structure which contains the general description of the lastErrors which occurred and an array of all lastErrors
func NewWrappedLastErrors ¶
func NewWrappedLastErrors(description string, err error) *WrappedLastErrors
NewWrappedLastErrors returns an error