mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
package health
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
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 getPVCHealth(obj *unstructured.Unstructured) (*HealthStatus, error) {
|
|
gvk := obj.GroupVersionKind()
|
|
switch gvk {
|
|
case corev1.SchemeGroupVersion.WithKind(kube.PersistentVolumeClaimKind):
|
|
var pvc corev1.PersistentVolumeClaim
|
|
err := runtime.DefaultUnstructuredConverter.FromUnstructured(obj.Object, &pvc)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to convert unstructured PersistentVolumeClaim to typed: %w", err)
|
|
}
|
|
return getCorev1PVCHealth(&pvc)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported PersistentVolumeClaim GVK: %s", gvk)
|
|
}
|
|
}
|
|
|
|
func getCorev1PVCHealth(pvc *corev1.PersistentVolumeClaim) (*HealthStatus, error) {
|
|
var status HealthStatusCode
|
|
switch pvc.Status.Phase {
|
|
case corev1.ClaimLost:
|
|
status = HealthStatusDegraded
|
|
case corev1.ClaimPending:
|
|
status = HealthStatusProgressing
|
|
case corev1.ClaimBound:
|
|
status = HealthStatusHealthy
|
|
default:
|
|
status = HealthStatusUnknown
|
|
}
|
|
return &HealthStatus{Status: status}, nil
|
|
}
|