health

package
v1.34.0 Latest Latest
Warning

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

Go to latest
Published: Oct 21, 2021 License: Apache-2.0, BSD-2-Clause, MIT, + 1 more Imports: 25 Imported by: 13

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Now = time.Now

Now determines the current time.

Functions

func CheckAPIServerAvailability

func CheckAPIServerAvailability(ctx context.Context, condition gardencorev1beta1.Condition, restClient rest.Interface, conditioner conditionerFunc, log logrus.FieldLogger) gardencorev1beta1.Condition

CheckAPIServerAvailability checks if the API server of a cluster is reachable and measure the response time.

func CheckAPIService added in v1.20.0

func CheckAPIService(apiService *apiregistrationv1.APIService) error

CheckAPIService checks whether the given APIService is healthy. An APIService is considered healthy if it has the `Available` condition and its status is `True`.

func CheckBackupBucket

func CheckBackupBucket(obj client.Object) error

CheckBackupBucket checks if an backup bucket object is healthy or not.

func CheckBackupEntry added in v1.25.0

func CheckBackupEntry(obj client.Object) error

CheckBackupEntry checks if an backup entry object is healthy or not.

func CheckCustomResourceDefinition added in v1.34.0

func CheckCustomResourceDefinition(crd *apiextensionsv1.CustomResourceDefinition) error

CheckCustomResourceDefinition checks whether the given CustomResourceDefinition is healthy. A CRD is considered healthy if its `NamesAccepted` and `Established` conditions are with status `True` and its `Terminating` condition is missing or has status `False`.

func CheckDaemonSet

func CheckDaemonSet(daemonSet *appsv1.DaemonSet) error

CheckDaemonSet checks whether the given DaemonSet is healthy. A DaemonSet is considered healthy if its controller observed its current revision and if its desired number of scheduled pods is equal to its updated number of scheduled pods.

func CheckDeployment

func CheckDeployment(deployment *appsv1.Deployment) error

CheckDeployment checks whether the given Deployment is healthy. A deployment is considered healthy if the controller observed its current revision and if the number of updated replicas is equal to the number of replicas.

func CheckEtcd added in v1.2.0

func CheckEtcd(etcd *druidv1alpha1.Etcd) error

CheckEtcd checks whether the given Etcd is healthy. A Etcd is considered healthy if its ready field in status is true.

func CheckExtensionObject

func CheckExtensionObject(o client.Object) error

CheckExtensionObject checks if an extension Object is healthy or not. An extension object is healthy if * Its observed generation is up-to-date * No gardener.cloud/operation is set * No lastError is in the status * A last operation is state succeeded is present

func CheckJob added in v1.34.0

func CheckJob(job *batchv1.Job) error

CheckJob checks whether the given Job is healthy. A Job is considered healthy if its `JobFailed` condition is missing or has status `False`.

func CheckManagedResource added in v1.13.0

func CheckManagedResource(mr *resourcesv1alpha1.ManagedResource) error

CheckManagedResource checks if all conditions of a ManagedResource ('ResourcesApplied' and 'ResourcesHealthy') are True and .status.observedGeneration matches the current .metadata.generation

func CheckManagedResourceApplied added in v1.34.0

func CheckManagedResourceApplied(mr *resourcesv1alpha1.ManagedResource) error

CheckManagedResourceApplied checks if the condition 'ResourcesApplied' of a ManagedResource is True and the .status.observedGeneration matches the current .metadata.generation

func CheckManagedResourceHealthy added in v1.34.0

func CheckManagedResourceHealthy(mr *resourcesv1alpha1.ManagedResource) error

CheckManagedResourceHealthy checks if the condition 'ResourcesHealthy' of a ManagedResource is True

func CheckManagedSeed added in v1.18.0

func CheckManagedSeed(managedSeed *seedmanagementv1alpha1.ManagedSeed) error

CheckManagedSeed checks if the given ManagedSeed is up-to-date and if its Seed has been registered.

func CheckNode

func CheckNode(node *corev1.Node) error

CheckNode checks whether the given Node is healthy. A node is considered healthy if it has a `corev1.NodeReady` condition and this condition reports `corev1.ConditionTrue`.

func CheckPod added in v1.34.0

func CheckPod(pod *corev1.Pod) error

CheckPod checks whether the given Pod is healthy. A Pod is considered healthy if its `.status.phase` is `Running` or `Succeeded`.

func CheckReplicaSet added in v1.34.0

func CheckReplicaSet(rs *appsv1.ReplicaSet) error

CheckReplicaSet checks whether the given ReplicaSet is healthy. A ReplicaSet is considered healthy if the controller observed its current revision and if the number of ready replicas is equal to the number of replicas.

func CheckReplicationController added in v1.34.0

func CheckReplicationController(rc *corev1.ReplicationController) error

CheckReplicationController checks whether the given ReplicationController is healthy. A ReplicationController is considered healthy if the controller observed its current revision and if the number of ready replicas is equal to the number of replicas.

func CheckSeed

func CheckSeed(seed *gardencorev1beta1.Seed, identity *gardencorev1beta1.Gardener) error

CheckSeed checks if the Seed is up-to-date and if its extensions have been successfully bootstrapped.

func CheckSeedForMigration added in v1.14.0

func CheckSeedForMigration(seed *gardencorev1beta1.Seed, identity *gardencorev1beta1.Gardener) error

CheckSeedForMigration checks if the Seed is up-to-date (comparing only the versions) and if its extensions have been successfully bootstrapped.

func CheckService added in v1.34.0

func CheckService(ctx context.Context, scheme *runtime.Scheme, c client.Client, service *corev1.Service) error

CheckService checks whether the given service is healthy. A Service is considered unhealthy if it is of type `LoadBalancer` but doesn't have an ingress element in its status.

func CheckStatefulSet

func CheckStatefulSet(statefulSet *appsv1.StatefulSet) error

CheckStatefulSet checks whether the given StatefulSet is healthy. A StatefulSet is considered healthy if its controller observed its current revision, it is not in an update (i.e. UpdateRevision is empty) and if its current replicas are equal to its desired replicas.

func GetPodCondition

func GetPodCondition(status *corev1.PodStatus, conditionType corev1.PodConditionType) (int, *corev1.PodCondition)

GetPodCondition extracts the provided condition from the given status and returns that. Returns nil and -1 if the condition is not present, and the index of the located condition.

func GetPodReadyCondition

func GetPodReadyCondition(status corev1.PodStatus) *corev1.PodCondition

GetPodReadyCondition extracts the pod ready condition from the given status and returns that. Returns nil if the condition is not present.

func IsPodReady

func IsPodReady(pod *corev1.Pod) bool

IsPodReady returns true if a pod is ready; false otherwise.

func IsPodReadyConditionTrue

func IsPodReadyConditionTrue(status corev1.PodStatus) bool

IsPodReadyConditionTrue returns true if a pod is ready; false otherwise.

Types

type Func added in v1.11.0

type Func func(client.Object) error

Func is a type for a function that checks the health of a runtime.Object.

func And added in v1.11.0

func And(fns ...Func) Func

And combines multiple health check funcs to a single func, checking all funcs sequentially and return the first error that occurs or nil if no error occurs.¬

func ExtensionOperationHasBeenUpdatedSince added in v1.11.0

func ExtensionOperationHasBeenUpdatedSince(lastUpdateTime v1.Time) Func

ExtensionOperationHasBeenUpdatedSince returns a health check function that checks if an extension Object's last operation has been updated since `lastUpdateTime`.

func ObjectHasAnnotationWithValue added in v1.25.0

func ObjectHasAnnotationWithValue(key, value string) Func

ObjectHasAnnotationWithValue returns a health check function that checks if a given Object has an annotation with a specified value.

Jump to

Keyboard shortcuts

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