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
+34
View File
@@ -0,0 +1,34 @@
```
kubectl create namespace gitea
helm repo add gitea-charts https://dl.gitea.com/charts/
helm repo update
helm upgrade --install gitea gitea-charts/gitea \
--namespace gitea \
-f values.yaml
```
## PV / PVC
```
kubectl create -f ./pv-gitea.yaml
kubectl create -f ./pvc-gitea.yaml
```
## Check
```
kubectl -n gitea get pods,pvc,ingress
kubectl -n gitea rollout status deploy/gitea
kubectl -n gitea get secret
```
## Show chart values - usefuel for override in value.yaml
```
helm show values gitea-charts/gitea | grep -A20 -B5 -i claim
helm show values gitea-charts/gitea | grep -A20 -B5 -i persistence
helm show values gitea-charts/gitea | grep -A20 -B5 -i storage
```