Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add update version force annotation #153

Merged
merged 2 commits into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions apis/v1alpha1/access_entry.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions apis/v1alpha1/ack-generate-metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ack_generate_info:
build_date: "2025-03-28T19:18:13Z"
build_hash: 980cb1e4734f673d16101cf55206b84ca639ec01
build_date: "2025-04-04T04:43:23Z"
build_hash: f5a9ac2db3296fac3aa18dacf282267b15229ad1
go_version: go1.24.1
version: v0.44.0
api_directory_checksum: feb947454f62a1c6a36512771ee31f36ae7bcb6d
version: v0.44.0-2-gf5a9ac2
api_directory_checksum: 99ed3c67c10b10fb277bcbe40a10712ec9dd8595
api_version: v1alpha1
aws_sdk_go_version: v1.32.6
aws_sdk_go_version: v1.36.3
generator_config_info:
file_checksum: 687d1b51c5afe75b62b50c3c32c83d7e6cadc3e3
file_checksum: 4615b96497cd57742b072f9ab8ae025ac2da2ca0
original_file_name: generator.yaml
last_modification:
reason: API generation
2 changes: 1 addition & 1 deletion apis/v1alpha1/addon.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions apis/v1alpha1/annotation.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ var (
// of the `spec` object. If the value is "false", the controller will not force an update of the
// nodegroup version.
ForceNodeGroupUpdateVersionAnnotation = fmt.Sprintf("%s/force-update-version", GroupVersion.Group)
// ForceClusterUpgradeAnnotation is an annotation whose value indicates whether
// the cluster version upgrade should be forced even if there are cluster insight findings.
// The value of this annotation must be a boolean value.
ForceClusterUpgradeAnnotation = fmt.Sprintf("%s/force-upgrade", GroupVersion.Group)
)

const (
Expand All @@ -52,4 +56,7 @@ const (
// annotation that indicates that the desired size of a nodegroup is managed by the ACK
// controller.
DesiredSizeManagedByACKController = "ack-eks-controller"
// DefaultForceClusterUpgrade is the default value for ForceClusterUpgradeAnnotation if the annotation
// is not set or has an invalid value.
DefaultForceClusterUpgrade = false
)
14 changes: 7 additions & 7 deletions apis/v1alpha1/cluster.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions apis/v1alpha1/enums.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions apis/v1alpha1/generator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -524,3 +524,6 @@ ignore:
- AssociateIdentityProviderConfigOutput.Update
- AssociateAccessPolicyInput.PrincipalArn
- AssociateAccessPolicyInput.ClusterName
- DescribeNodegroupOutput.Nodegroup.UpdateConfig.UpdateStrategy
- DescribeNodegroupOutput.Nodegroup.NodeRepairConfig
- CreateNodegroupInput.NodeRepairConfig
Loading