30 lines
964 B
Markdown
30 lines
964 B
Markdown
# 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
|
|
``` |