add ai-teacher helm chart and rename notes to readme

This commit is contained in:
Adrien
2026-04-12 15:32:23 +00:00
parent e05f1c0de6
commit 76c58f7699
20 changed files with 394 additions and 125 deletions
+30
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
```