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
Current Behaviour: The lastpass-operator supports the creation of Opaque secrets.
lastpass-operator
Opaque
Enhanced behaviour: Add the flexibility in the LastPass custom resource to choose the type of secret to be created.
LastPass
type: kubernetes.io/dockerconfigjson key: .dockerconfigjson
Example secret for docker credentials
apiVersion: v1 kind: Secret type: kubernetes.io/dockerconfigjson metadata: name: regcred namespace: bots data: .dockerconfigjson: ewogICAiYXV0aHMiOnsKICAgICAgImh0dHBzOi8vaW5kZXguZG9ja2VyLmlvL3YxLyI6ewogICAgICAgICAidXNlcm5hbWUiOiJVc2VybmFtZSIsCiAgICAgICAgICJwYXNzd29yZCI6IlBhc3N3MHJkIiwKICAgICAgICAgImVtYWlsIjoic29tZW9uZUBnbWFpbC5jb20iLAogICAgICAgICAiYXV0aCI6IlZYTmxjbTVoYldVNlVHRnpjM2N3Y21RPSIKICAgICAgfQogICB9Cn0=
Example last pass configuration for docker credentials which will be stored as a base64 string under the .dockerconfigjson key
.dockerconfigjson
{ "auths":{ "https://index.docker.io/v1/":{ "username":"Username", "password":"Passw0rd", "email":"[email protected]", "auth":"VXNlcm5hbWU6UGFzc3cwcmQ=" } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behaviour:
The
lastpass-operator
supports the creation ofOpaque
secrets.Enhanced behaviour:
Add the flexibility in the
LastPass
custom resource to choose the type of secret to be created.type: kubernetes.io/dockerconfigjson
key: .dockerconfigjson
Example secret for docker credentials
Example last pass configuration for docker credentials which will be stored as a base64 string under the
.dockerconfigjson
keyThe text was updated successfully, but these errors were encountered: