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

Enterprise support for Sealed Secrets #1288

Closed
alvneiayu opened this issue Aug 8, 2023 · 0 comments
Closed

Enterprise support for Sealed Secrets #1288

alvneiayu opened this issue Aug 8, 2023 · 0 comments
Labels
backlog Issues/PRs that will be included in the project roadmap

Comments

@alvneiayu
Copy link
Collaborator

alvneiayu commented Aug 8, 2023

Many Helm charts, such as the Bitnami charts, generate secret templates using plain text values. This could lead to the leakage of credentials and other sensitive information. Sealed Secrets provides a simple solution for generating encrypted Kubernetes secrets called "Sealed Secrets". These Sealed Secrets will generate secrets by decoding them.

It is pretty simple to use Sealed Secrets with our Bitnami charts. Example using it with PostgreSQL:

  • Generate and apply your Sealed Secret with your secrets encrypted:
    kubectl create secret generic my-secret --from-literal postgres-password=mypassword --from-literal password=mypassword -o yaml --dry-run | kubeseal | kubectl apply -f -
    This is going to generate a Sealed Secret using the public certificate generated by the Sealed Secrets Controller.
  • Install PostgreSQL using Bitnami charts:
    helm install my-release oci://registry-1.docker.io/bitnamicharts/postgresql --set global.postgresql.auth.existingSecret=my-secret

🎉 Moreover, we are happy to announce that our VMware Application Catalog now includes enterprise support for Sealed Secrets. This means that VMware Application Catalog customers are entitled to receive technical support from VMware for any issue they face regarding the usage of Sealed Secrets. We continue to provide best-effort support for the project GitHub issues (as we are doing now).

For additional details, please refer to the following resource.

@alvneiayu alvneiayu pinned this issue Aug 8, 2023
@alvneiayu alvneiayu added the backlog Issues/PRs that will be included in the project roadmap label Aug 8, 2023
@agarcia-oss agarcia-oss changed the title Sealed Secrets support for Bitnami Charts. Enterprise support for Sealed Secrets Aug 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backlog Issues/PRs that will be included in the project roadmap
Projects
None yet
Development

No branches or pull requests

1 participant