# Info 1. [Installation](https://github.com/bitnami-labs/sealed-secrets?tab=readme-ov-file#helm-chart) ```console helm repo add sealed-secrets https://bitnami-labs.github.io/sealed-secrets ``` ```console helm install sealed-secrets sealed-secrets/sealed-secrets -f helm/values ``` 2. Create a secret ```console kubectl create secret generic --dry-run=client --from-env-file= -o yaml | kubeseal \ --controller-name=sealed-secrets \ --controller-namespace= \ --format yaml \ -n ``` OR ```console echo -n "MySecret" | kubeseal --raw --name \ --controller-name=sealed-secrets \ --controller-namespace= \ -n ``` 3. Validate encrypted data ``` cat | kubeseal --validate --controller-name=sealed-secrets --controller-namespace= ``` 4. Check status of sealed secret ``` kubectl describe sealedsecrets.bitnami.com/ -n ```