mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
64 lines
2.0 KiB
Go
64 lines
2.0 KiB
Go
package health
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
appsv1 "k8s.io/api/apps/v1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"github.com/argoproj/argo-cd/gitops-engine/pkg/utils/kube"
|
|
)
|
|
|
|
func getReplicaSetHealth(obj *unstructured.Unstructured) (*HealthStatus, error) {
|
|
gvk := obj.GroupVersionKind()
|
|
switch gvk {
|
|
case appsv1.SchemeGroupVersion.WithKind(kube.ReplicaSetKind):
|
|
var replicaSet appsv1.ReplicaSet
|
|
err := runtime.DefaultUnstructuredConverter.FromUnstructured(obj.Object, &replicaSet)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to convert unstructured ReplicaSet to typed: %w", err)
|
|
}
|
|
return getAppsv1ReplicaSetHealth(&replicaSet)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported ReplicaSet GVK: %s", gvk)
|
|
}
|
|
}
|
|
|
|
func getAppsv1ReplicaSetHealth(replicaSet *appsv1.ReplicaSet) (*HealthStatus, error) {
|
|
if replicaSet.Generation <= replicaSet.Status.ObservedGeneration {
|
|
cond := getAppsv1ReplicaSetCondition(replicaSet.Status, appsv1.ReplicaSetReplicaFailure)
|
|
if cond != nil && cond.Status == corev1.ConditionTrue {
|
|
return &HealthStatus{
|
|
Status: HealthStatusDegraded,
|
|
Message: cond.Message,
|
|
}, nil
|
|
} else if replicaSet.Spec.Replicas != nil && replicaSet.Status.AvailableReplicas < *replicaSet.Spec.Replicas {
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: fmt.Sprintf("Waiting for rollout to finish: %d out of %d new replicas are available...", replicaSet.Status.AvailableReplicas, *replicaSet.Spec.Replicas),
|
|
}, nil
|
|
}
|
|
} else {
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: "Waiting for rollout to finish: observed replica set generation less than desired generation",
|
|
}, nil
|
|
}
|
|
|
|
return &HealthStatus{
|
|
Status: HealthStatusHealthy,
|
|
}, nil
|
|
}
|
|
|
|
func getAppsv1ReplicaSetCondition(status appsv1.ReplicaSetStatus, condType appsv1.ReplicaSetConditionType) *appsv1.ReplicaSetCondition {
|
|
for i := range status.Conditions {
|
|
c := status.Conditions[i]
|
|
if c.Type == condType {
|
|
return &c
|
|
}
|
|
}
|
|
return nil
|
|
}
|