-
Notifications
You must be signed in to change notification settings - Fork 25
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 empty controller and API for VerticaRestorePoints #643
Conversation
This has to merge into vnext. I changed the base of the PR, but I see a bunch of changes in there that you probably didn't do. I would suggest that you rebase with vnext and force push the changes up to GitHub. |
682325d
to
50142f0
Compare
50142f0
to
c226abe
Compare
I'm not sure about the scorecard tests; I have run them successfully on my local machine using the command
but Github CI complains this https://github.com/vertica/vertica-kubernetes/actions/runs/7264951541/job/19793584148?pr=643
That happens because |
Update, I added 'RestorePoints' to the status and changed the resource to address the issue. However, please feel free to let me know if there is a bettern name for status field |
This is fine for now. I expect to fill in valid status fields later. |
8db7181
to
9cf58a5
Compare
helm-charts/verticadb-operator/tests/kind-concurrency_test.yaml
Outdated
Show resolved
Hide resolved
This PR build out the stub for an empty controller to handle the VerticaRestorePointsQuery API. It does not include a webhook, as there are no defined rules for transitioning the Custom Resource (CR), given that the spec portion contains only two fields. The operator can observe the new API, initiate a reconciliation iteration, and take no action, as we have set nil for the actors during this implementation phase --------- Co-authored-by: Matt Spilchen <[email protected]>
This PR build out the stub for an empty controller to handle the VerticaRestorePointsQuery API. It does not include a webhook, as there are no defined rules for transitioning the Custom Resource (CR), given that the spec portion contains only two fields. The operator can observe the new API, initiate a reconciliation iteration, and take no action, as we have set nil for the actors during this implementation phase --------- Co-authored-by: Matt Spilchen <[email protected]>
This PR creates a webhook for the new VerticaRestorePointQuery CR to catch the checks early. There is some webhook part that is added in #643."
This PR build out the stub for an empty controller to handle the VerticaRestorePointsQuery API. It does not include a webhook, as there are no defined rules for transitioning the Custom Resource (CR), given that the spec portion contains only two fields. The operator can observe the new API, initiate a reconciliation iteration, and take no action, as we have set nil for the actors during this implementation phase