-
Notifications
You must be signed in to change notification settings - Fork 22
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
Added Object Store Support for Crossplane #32
base: main
Are you sure you want to change the base?
Added Object Store Support for Crossplane #32
Conversation
We need access key and secret access key stored in a secret. Similar to how we handle kubeconfig with clusters. I believe it is supposed to a field https://github.com/crossplane-contrib/provider-civo/blob/main/apis/civo/cluster/v1alpha1/types.go#L50 |
@RealHarshThakur so shall I remove the access key from spec struct and just add a var to the secret struct to the spec that contains secret access key and access key ? |
We need access key in spec. Yes, add another field called |
95555c4
to
298dee3
Compare
Signed-off-by: satakshigarg <satakshi@civo.com>
Signed-off-by: satakshigarg <satakshi@civo.com>
298dee3
to
622a241
Compare
Signed-off-by: satakshigarg <satakshi@civo.com>
Signed-off-by: satakshigarg <satakshi@civo.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we keep all directory & file names in a small case? (e.g /ObjectStore
-> /objectstore
)
LGTM
Sure, I'll update the same |
Signed-off-by: satakshigarg <satakshi@civo.com>
Signed-off-by: satakshigarg <satakshi@civo.com>
Signed-off-by: satakshigarg <satakshi@civo.com>
Added the support for Object Store for Crossplane. [Internal/Controllers/objectstore.go is in progress, please ignore]
Signed-off-by: satakshigarg satakshi@civo.com
Description of your changes
Fixes #
I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested