Skip to content
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

Add CRD to create secrets wrapper #13

Closed
omerlh opened this issue Oct 25, 2018 · 0 comments · Fixed by #115
Closed

Add CRD to create secrets wrapper #13

omerlh opened this issue Oct 25, 2018 · 0 comments · Fixed by #115
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@omerlh
Copy link
Contributor

omerlh commented Oct 25, 2018

Many existing applications running on Kubernetes relays on secrets to store sensitive data - which make Kamus unusable. This can be solved with a CRD that is wrapper around secret, something in the following format:

apiVersion: v1
kind: KamusSecret
metadata:
  name: mysecret
  namespace: default
  service-account: default
type: Opaque
data:
  username: <encrypted data>
  password: <encrypted data>

The CRD controller will use Kamus and the SA token to decrypt the value of the secret and create a real Kubernetes secret object from it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant