-
Notifications
You must be signed in to change notification settings - Fork 3
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
Multi Key Value Secret support #82
Comments
@spintower Short answer is yes. Secrets resolved from keyVault references are saved into the
Use above yaml as an example, all the selected keyVault reference items will be saved into |
@linglingye001 The doc for this part is not very clear. Can we add some examples to clearly illustrate what kind of Secret will be generated with different configurations? |
I will update the doc. |
Thanks @RichardChen820 , I'm looking for a way to extract structured data from a secret (turn one AKV key/value into multiple key/value pairs in k8s secret). For example, https://akv2k8s.io/tutorials/sync/4-multi-key-value-secret/ can take a secret value that contains JSON {
"key1": "value1",
"key2": "value2",
"key3": "value3"
} and create a secret with parsed key/value pairs:
akv2k8s needs the line It's my understanding that AppConfiguration-KubernetesProvider in this case will simply insert the JSON-encoded string into the secret without parsing the JSON, is that right? |
Sounds it's a special protocol defined in akv2k8s targeting to resolve certain format of secret value. |
Does the secret in key vault needs |
Does AppConfiguration-KubernetesProvider support multi-key-value secrets similar to https://akv2k8s.io/tutorials/sync/4-multi-key-value-secret/ and https://external-secrets.io/latest/guides/all-keys-one-secret/?
The text was updated successfully, but these errors were encountered: