mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
81 lines
3.0 KiB
Go
81 lines
3.0 KiB
Go
package health
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
appsv1 "k8s.io/api/apps/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 getDeploymentHealth(obj *unstructured.Unstructured) (*HealthStatus, error) {
|
|
gvk := obj.GroupVersionKind()
|
|
switch gvk {
|
|
case appsv1.SchemeGroupVersion.WithKind(kube.DeploymentKind):
|
|
var deployment appsv1.Deployment
|
|
err := runtime.DefaultUnstructuredConverter.FromUnstructured(obj.Object, &deployment)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to convert unstructured Deployment to typed: %w", err)
|
|
}
|
|
return getAppsv1DeploymentHealth(&deployment)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported Deployment GVK: %s", gvk)
|
|
}
|
|
}
|
|
|
|
func getAppsv1DeploymentHealth(deployment *appsv1.Deployment) (*HealthStatus, error) {
|
|
if deployment.Spec.Paused {
|
|
return &HealthStatus{
|
|
Status: HealthStatusSuspended,
|
|
Message: "Deployment is paused",
|
|
}, nil
|
|
}
|
|
// Borrowed at kubernetes/kubectl/rollout_status.go https://github.com/kubernetes/kubernetes/blob/5232ad4a00ec93942d0b2c6359ee6cd1201b46bc/pkg/kubectl/rollout_status.go#L80
|
|
if deployment.Generation <= deployment.Status.ObservedGeneration {
|
|
cond := getAppsv1DeploymentCondition(deployment.Status, appsv1.DeploymentProgressing)
|
|
switch {
|
|
case cond != nil && cond.Reason == "ProgressDeadlineExceeded":
|
|
return &HealthStatus{
|
|
Status: HealthStatusDegraded,
|
|
Message: fmt.Sprintf("Deployment %q exceeded its progress deadline", deployment.Name),
|
|
}, nil
|
|
case deployment.Spec.Replicas != nil && deployment.Status.UpdatedReplicas < *deployment.Spec.Replicas:
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: fmt.Sprintf("Waiting for rollout to finish: %d out of %d new replicas have been updated...", deployment.Status.UpdatedReplicas, *deployment.Spec.Replicas),
|
|
}, nil
|
|
case deployment.Status.Replicas > deployment.Status.UpdatedReplicas:
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: fmt.Sprintf("Waiting for rollout to finish: %d old replicas are pending termination...", deployment.Status.Replicas-deployment.Status.UpdatedReplicas),
|
|
}, nil
|
|
case deployment.Status.AvailableReplicas < deployment.Status.UpdatedReplicas:
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: fmt.Sprintf("Waiting for rollout to finish: %d of %d updated replicas are available...", deployment.Status.AvailableReplicas, deployment.Status.UpdatedReplicas),
|
|
}, nil
|
|
}
|
|
} else {
|
|
return &HealthStatus{
|
|
Status: HealthStatusProgressing,
|
|
Message: "Waiting for rollout to finish: observed deployment generation less than desired generation",
|
|
}, nil
|
|
}
|
|
|
|
return &HealthStatus{
|
|
Status: HealthStatusHealthy,
|
|
}, nil
|
|
}
|
|
|
|
func getAppsv1DeploymentCondition(status appsv1.DeploymentStatus, condType appsv1.DeploymentConditionType) *appsv1.DeploymentCondition {
|
|
for i := range status.Conditions {
|
|
c := status.Conditions[i]
|
|
if c.Type == condType {
|
|
return &c
|
|
}
|
|
}
|
|
return nil
|
|
}
|