Skip to content

Commit d9e4eac

Browse files
committed
move annotation
1 parent 5b39255 commit d9e4eac

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

apis/v1alpha1/annotation.go

+7
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ var (
4141
// of the `spec` object. If the value is "false", the controller will not force an update of the
4242
// nodegroup version.
4343
ForceNodeGroupUpdateVersionAnnotation = fmt.Sprintf("%s/force-update-version", GroupVersion.Group)
44+
// ForceClusterUpgradeAnnotation is an annotation whose value indicates whether
45+
// the cluster version upgrade should be forced even if there are cluster insight findings.
46+
// The value of this annotation must be a boolean value.
47+
ForceClusterUpgradeAnnotation = fmt.Sprintf("%s/force-upgrade", GroupVersion.Group)
4448
)
4549

4650
const (
@@ -52,4 +56,7 @@ const (
5256
// annotation that indicates that the desired size of a nodegroup is managed by the ACK
5357
// controller.
5458
DesiredSizeManagedByACKController = "ack-eks-controller"
59+
// DefaultForceClusterUpgrade is the default value for ForceClusterUpgradeAnnotation if the annotation
60+
// is not set or has an invalid value.
61+
DefaultForceClusterUpgrade = false
5562
)

pkg/resource/cluster/hook.go

+4-14
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import (
3232
corev1 "k8s.io/api/core/v1"
3333
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3434

35+
"github.com/aws-controllers-k8s/eks-controller/apis/v1alpha1"
3536
"github.com/aws-controllers-k8s/eks-controller/pkg/tags"
3637
"github.com/aws-controllers-k8s/eks-controller/pkg/util"
3738
)
@@ -51,31 +52,20 @@ const (
5152
StatusPending = "PENDING"
5253
)
5354

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-
6555
// GetForceUpgrade returns whether the cluster version upgrade should be forced
6656
// as determined by the annotation on the object, or the default value otherwise.
6757
func GetForceUpgrade(
6858
m *metav1.ObjectMeta,
6959
) bool {
7060
resAnnotations := m.GetAnnotations()
71-
forceUpgrade, ok := resAnnotations[AnnotationForceUpgrade]
61+
forceUpgrade, ok := resAnnotations[v1alpha1.ForceClusterUpgradeAnnotation]
7262
if !ok {
73-
return DefaultForceUpgrade
63+
return v1alpha1.DefaultForceClusterUpgrade
7464
}
7565

7666
forceUpgradeBool, err := strconv.ParseBool(forceUpgrade)
7767
if err != nil {
78-
return DefaultForceUpgrade
68+
return v1alpha1.DefaultForceClusterUpgrade
7969
}
8070

8171
return forceUpgradeBool

0 commit comments

Comments
 (0)