initial git commit saving configs

This commit is contained in:
Adrien
2026-03-31 15:30:40 +00:00
commit 7770e9859c
64 changed files with 2866 additions and 0 deletions

30
bitwarden/notes.md Normal file
View File

@@ -0,0 +1,30 @@
# Bitwarden lite
https://bitwarden.com/help/install-and-deploy-lite
```
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm dependency build
helm upgrade --install bitwarden . -f values.yaml -n bitwarden
helm delete bitwarden -n bitwarden
kubectl -n bitwarden rollout restart deploy/bitwarden-lite
kubectl -n bitwarden create secret generic bitwarden-postgresql-auth \
--from-literal=postgres-password='pwdBitwardenSqlStorage' \
--from-literal=password='pwdBitwardenStorage'
kubectl -n bitwarden create secret generic bitwarden-smtp \
--from-literal=globalSettings__mail__smtp__host='smtp.gmail.com' \
--from-literal=globalSettings__mail__smtp__ssl='starttls' \
--from-literal=globalSettings__mail__smtp__username='adrcpp@gmail.com' \
--from-literal=globalSettings__mail__smtp__password='agkp arhk yapp rafi' \
--from-literal=globalSettings__mail__replyToEmail='adrcpp@gmail.com'
kubectl -n bitwarden get pods
```