@@ -32,6 +32,7 @@ import (
32
32
corev1 "k8s.io/api/core/v1"
33
33
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
34
34
35
+ "github.com/aws-controllers-k8s/eks-controller/apis/v1alpha1"
35
36
"github.com/aws-controllers-k8s/eks-controller/pkg/tags"
36
37
"github.com/aws-controllers-k8s/eks-controller/pkg/util"
37
38
)
@@ -51,31 +52,20 @@ const (
51
52
StatusPending = "PENDING"
52
53
)
53
54
54
- const (
55
- // AnnotationPrefix is the prefix for all annotations specifically for
56
- // the EKS service.
57
- AnnotationPrefix = "eks.services.k8s.aws/"
58
- // AnnotationForceUpgrade is an annotation whose value indicates whether
59
- // the cluster version upgrade should be forced even if there are cluster insight findings.
60
- AnnotationForceUpgrade = AnnotationPrefix + "force-upgrade"
61
-
62
- DefaultForceUpgrade = false
63
- )
64
-
65
55
// GetForceUpgrade returns whether the cluster version upgrade should be forced
66
56
// as determined by the annotation on the object, or the default value otherwise.
67
57
func GetForceUpgrade (
68
58
m * metav1.ObjectMeta ,
69
59
) bool {
70
60
resAnnotations := m .GetAnnotations ()
71
- forceUpgrade , ok := resAnnotations [AnnotationForceUpgrade ]
61
+ forceUpgrade , ok := resAnnotations [v1alpha1 . ForceClusterUpgradeAnnotation ]
72
62
if ! ok {
73
- return DefaultForceUpgrade
63
+ return v1alpha1 . DefaultForceClusterUpgrade
74
64
}
75
65
76
66
forceUpgradeBool , err := strconv .ParseBool (forceUpgrade )
77
67
if err != nil {
78
- return DefaultForceUpgrade
68
+ return v1alpha1 . DefaultForceClusterUpgrade
79
69
}
80
70
81
71
return forceUpgradeBool
0 commit comments