``` 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 ```