-
Notifications
You must be signed in to change notification settings - Fork 52
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
Does parametersFrom
work with automatic credential rotation?
#431
Comments
Hi @lanthoor |
I would indeed argue that the btp-service-operator in supporting parametersFrom should watch those secrets for changes and update the instance or binding accordingly. I can see how this could be breaking and I could also see the use case of keeping the parameters once read from a secret. So this should probably be configurable. Where could I track the feature request you mentioned? |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
Feature Request is still open, adding this comment to prevent automatic issue closing. |
Just to add another use case: I have a saas registry where I want to change the display name. The service instance gets the parameters from a secret like:
I was able to actually use the "customTags" section to force an upgrade:
but this seems like a hack. And it is also not usable due to not owning the charts... was just a poc Currently it seems that teammates will be tempted to delete the serviceinstances and recreate when wanting to change. Something that may not be possible if having multiple subcribers to a saas registry service |
Could you please consider prioritizing this and solve the |
Premise
I have a
ServiceInstance
(calledinstance-a
) and itsServiceBinding
(calledbinding-a
) that are created using the SAP BTP Service Operator.I have another
ServiceInstance
(calledinstance-b
) that usesparametersFrom
to read values from theSecret
generated from the aboveServiceBinding
(binding-a
).Question
A new
Secret
will be created based on the rotation policy I've defined inbinding-a
and the old one will be moved to a suffixedSecret
till TTL expires. Will theServiceInstance
with the nameinstance-b
automatically pick up the new values from theSecret
or do we have to perform some action to make it happen?The text was updated successfully, but these errors were encountered: