-
Notifications
You must be signed in to change notification settings - Fork 209
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
QUESTION Secrets #2158
Comments
Great question! So in ASO Beta-0 (which isn't out yet), we have a workflow implemented that solves this for you. The way it works is that you specify the following field on your cache CRD: This defines a bunch of secrets:
Each of those fields is a See #1471, and #2101. You can read the full design here which shows some example YAMLs as well. The Note: The contents of |
This is a good reminder for me though, before beta0 comes out I'll write up better user-facing documentation for this, as it's not explained well at all. |
@matthchr this sounds good :) |
We have a milestone here you can look at. Items there will burn down as we approach release. In this case it looks like there's a lot of items left in the milestone but really most of them are already fixed and we're just waiting to close them until beta-0 actually ships. Those are the items tagged with the Rough estimate for release is ~1 week from now (could be a bit earlier or take a bit longer but I wouldn't expect longer than 2 weeks from today). |
Of course, it took longer than 2 weeks... but beta.0 is out now! Closing this as this is supported there. See how to retrieve secrets created by Azure I have an example for |
Since the
Azure Service Operator
is designed to support GitOps I am wondering how we can retrievesecrets
which are generated.Example:
We are publishing a service which needs a redis
cache
and we need to put the information into asecret
/configmap
and mount these as volumes into thedeployment
of our service. In our config file we need to put in aCacheKey
to access the rediscache
.So we have following resources defined in helm (a bit simplyfied):
As far as I have seen in the documentation we need to call the
ListKeys
endpoit and need to develope an own hook... Is there any more detailed example or description?The text was updated successfully, but these errors were encountered: