We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to ask, if its possible to serve isBinary attribute from KES to ESO
apiVersion: kubernetes-client.io/v1 kind: ExternalSecret metadata: name: test-external-secret-certs namespace: msafadi-test spec: backendType: secretsManager data:
apiVersion: external-secrets.io/v1beta1 kind: ExternalSecret metadata: name: external-secret-certs-kafka namespace: msafadi-test spec: refreshInterval: 1m secretStoreRef: name: clustersecret kind: ClusterSecretStore target: name: secret-certs-kafka creationPolicy: Owner data:
Here we need to add decodingStrategy: Auto to those externalsecrets in KES which has isBinary=ture
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to ask, if its possible to serve isBinary attribute from KES to ESO
apiVersion: kubernetes-client.io/v1
kind: ExternalSecret
metadata:
name: test-external-secret-certs
namespace: msafadi-test
spec:
backendType: secretsManager
data:
key: files/logs
name: filename.txt
property: file.txt
to be translated into ESO as below:
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: external-secret-certs-kafka
namespace: msafadi-test
spec:
refreshInterval: 1m
secretStoreRef:
name: clustersecret
kind: ClusterSecretStore
target:
name: secret-certs-kafka
creationPolicy: Owner
data:
remoteRef:
key: files/logs
property: file.txt
decodingStrategy: Auto
Here we need to add decodingStrategy: Auto to those externalsecrets in KES which has isBinary=ture
The text was updated successfully, but these errors were encountered: