mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
This pull request adds the external-secrets-operator to our main bundles. By integrating the external-secrets-operator, we enable seamless connectivity to external hosted secret management services such as HashiCorp Vault, 1Password, AWS Secrets Manager, and more. Benefits: Unified Secret Management: Allows the application to securely fetch secrets from external providers without hardcoding them into configurations. Flexibility: Supports multiple external secret stores, giving users the freedom to choose their preferred secret management solution. Enhanced Security: Reduces the risk of exposing sensitive information by leveraging established secret management platforms. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced the `external-secrets-operator` for managing external secrets in Kubernetes. - Added a Helm chart for the `external-secrets` application, including configuration options and dependencies. - Implemented a certificate controller within the external-secrets-operator. - **Documentation** - Added README.md with installation instructions and configuration options for the External Secrets Operator. - Included success message and setup instructions in NOTES.txt for the external-secrets deployment. - **Chores** - Created .helmignore to streamline Helm packaging by excluding unnecessary files. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Andrei Kvapil <kvapss@gmail.com> Co-authored-by: Andrei Kvapil <kvapss@gmail.com>
11 lines
340 B
Makefile
11 lines
340 B
Makefile
export NAME=external-secrets-operator
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/package.mk
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add external-secrets https://charts.external-secrets.io
|
|
helm repo update external-secrets
|
|
helm pull external-secrets/external-secrets --untar --untardir charts
|
|
rm -rf charts/external-secrets/charts
|