-
Notifications
You must be signed in to change notification settings - Fork 266
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
Unable to modify DBCluster after creation when engine mode is serverless #917
Labels
kind/bug
Categorizes issue or PR as related to a bug.
Comments
Speaking with @RobinGolden from RDS, we may need to add a custom Update implementation for DBCluster that does not set fields in the |
jaypipes
added a commit
to jaypipes/ack-rds-controller
that referenced
this issue
Aug 26, 2021
Updates the ACK runtime to v0.12.0 Comments out a part of the e2e tests that tests updating an attribute on a DBCluster resource with engine mode 'serverless' until we've fixed aws-controllers-k8s/community#917.
jaypipes
added a commit
to jaypipes/ack-rds-controller
that referenced
this issue
Aug 27, 2021
The ModifyDBCluster RDS API call will return an InvalidParameterValue error if the engine mode for the DBCluster is "serverless" and any of the following fields have been set on the ModifyDBClusterInput shape: * PreferredMaintenanceWindow * PreferredBackupWindow * Port This error is returned **even if the value of the field in the ModifyDBClusterInput shape matches the existing value of the DBCluster resource** To get around this issue, I've added a custom update method implementation for the DBCluster resource that builds the ModifyDBClusterInput shape and ONLY sets fields on that shape when the matching Spec field is not nil AND there is a difference detected between the latest observed value and the desired value for that field. Fixes Issue aws-controllers-k8s/community#917
ack-bot
pushed a commit
to aws-controllers-k8s/rds-controller
that referenced
this issue
Aug 27, 2021
The ModifyDBCluster RDS API call will return an InvalidParameterValue error if the engine mode for the DBCluster is "serverless" and any of the following fields have been set on the ModifyDBClusterInput shape: * PreferredMaintenanceWindow * PreferredBackupWindow * Port This error is returned **even if the value of the field in the ModifyDBClusterInput shape matches the existing value of the DBCluster resource** To get around this issue, I've added a custom update method implementation for the DBCluster resource that builds the ModifyDBClusterInput shape and ONLY sets fields on that shape when the matching Spec field is not nil AND there is a difference detected between the latest observed value and the desired value for that field. Fixes Issue aws-controllers-k8s/community#917 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When regenerating the ACK controller for RDS with the latest ACK runtime and code-generator, I'm consistently getting a getting a failure when running the
test_db_cluster.TestDBCluster::test_create_delete_mysql_serverless
e2e test:When looking in the rds-controller Pod logs, there are no errors since there are no failures in communicating with RDS, but you can see that the controller sets the DBCluster resource to a terminal condition after attempting to update the DBCluster when it notices that the desired state for the
CopyTagsToSnapshot
field has changed:If I do a
kubectl describe
on the DBCluster resource in question, I consistently see a Condition with typeACK.Terminal
with the message "You currently can't modify BackupWindow with Aurora Serverless":Note that the e2e test is attempting to change the value of a single field of the DBCluster resource (
CopyTagsToSnapshot
) from thefalse
totrue
. You can see in the abovekubectl describe
output that the desired value ofSpec.CopyTagsToSnapshot
is properly set totrue
but in the Python e2e test, we use call the RDS DescribeDBClusters API call directly:and that last line fails the assertion, meaning that the DBCluster resource's
CopyTagsToSnapshot
field was never modified.After Googling for the "You currently can't modify BackupWindow with Aurora Serverless" message, I ran into the following Github issues and AWS forum threads that all describe the same problem:
There appears to be no ability to change fields on a DBCluster resource once created if the engine mode is serverless?
I tried setting various fields of the DBCluster resource used in the e2e test to a non-nil value but kept getting the same error message back from the RDS ModifyDBCluster API call, with various fields in the error message:
I'm unsure how to get past this particular issue :(
The text was updated successfully, but these errors were encountered: