initial git commit saving configs
This commit is contained in:
30
bitwarden/notes.md
Normal file
30
bitwarden/notes.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user