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

fix: fix permanent diff in SQLInstance backupConfiguration #4227

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

jingyih
Copy link
Collaborator

@jingyih jingyih commented Apr 1, 2025

This PR

  • Add a test case to reproduce Empty updates to GCP during SQLInstance reconciliation #4207
  • Fix the permanent diff in backupConfiguration for SQLInstance. This is a behavior change introduced when migrating the resource from the TF controller to the direct controller. The fix effectively reverts the behavior change.

Fixes: #4207

Without the change:

$ go test -v -tags=integration ./pkg/controller/dynamic/ -run TestCreateNoChangeUpdateDelete/sql/basic-sqlinstance-backupconfiguration-diff 
...
k8s.go:84: expected event with reason 'Updating' to not be recorded for SQLInstance pxx4um5zs4ihvqa/test-pxx4um5zs4ihvqa, but it was
...
--- FAIL: TestCreateNoChangeUpdateDelete (0.17s)
    --- FAIL: TestCreateNoChangeUpdateDelete/sql (0.00s)
        --- FAIL: TestCreateNoChangeUpdateDelete/sql/basic-sqlinstance-backupconfiguration-diff  (310.95s)
FAIL

With the change

$ go test -v -tags=integration ./pkg/controller/dynamic/ -run TestCreateNoChangeUpdateDelete/sql/basic-sqlinstance-backupconfiguration-diff 
...
--- PASS: TestCreateNoChangeUpdateDelete (0.22s)
    --- PASS: TestCreateNoChangeUpdateDelete/sql (0.00s)
        --- PASS: TestCreateNoChangeUpdateDelete/sql/basic-sqlinstance-backupconfiguration-diff (1037.23s)
PASS

Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please ask for approval from jingyih. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@jingyih
Copy link
Collaborator Author

jingyih commented Apr 1, 2025

Ah, this test does NOT wait for the next reconciliation to occur after the first one which successfully creates the GCP resource.

/close

@google-oss-prow google-oss-prow bot closed this Apr 1, 2025
Copy link
Contributor

@jingyih: Closed this PR.

In response to this:

Ah, this test does NOT wait for the next reconciliation to occur after the first one which successfully creates the GCP resource.

/close

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@jingyih
Copy link
Collaborator Author

jingyih commented Apr 2, 2025

I was able to reproduce this using a different test flow.

$ go test -v -tags=integration ./pkg/controller/dynamic/ -run TestCreateNoChangeUpdateDelete/sql/basic-issue-4207
...
k8s.go:84: expected event with reason 'Updating' to not be recorded for SQLInstance pxx4um5zs4ihvqa/test-pxx4um5zs4ihvqa, but it was
...
--- FAIL: TestCreateNoChangeUpdateDelete (0.17s)
    --- FAIL: TestCreateNoChangeUpdateDelete/sql (0.00s)
        --- FAIL: TestCreateNoChangeUpdateDelete/sql/basic-issue-4207 (310.95s)
FAIL

Despite the spec in the YAML configuration is not changed, we are seeing a diff in the controller.

return false
}

// Ignore ReplicationLogArchivingEnabled. It is not supported in KRM API.
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved this line from 306 for better readability.

@jingyih jingyih changed the title [Do not merge] chore: add test for issue 4207 fix: fix permanent diff in SQLInstance backupConfiguration Apr 2, 2025
@yuwenma
Copy link
Collaborator

yuwenma commented Apr 3, 2025

Could you remove the reference to 4207 (or use 4230 instead) in the PR description and test suite names? Otherwise it could cause confusions.

@jingyih
Copy link
Collaborator Author

jingyih commented Apr 4, 2025

Could you remove the reference to 4207 (or use 4230 instead) in the PR description and test suite names? Otherwise it could cause confusions.

Renamed test case to sqlinstance-backupconfiguration-diff.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Empty updates to GCP during SQLInstance reconciliation
2 participants