initial git commit saving configs
This commit is contained in:
34
gitea/NOTES.MD
Normal file
34
gitea/NOTES.MD
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user