1021 B
1021 B
Gitea git server
Gitea is a painless self-hosted Git service.
I created this simplified helm chart for self-hosting gitea in a container on kubernetes based on the excellent upstream official helm chart. Complete the steps below to deploy this chart.
# Set deployment environment
export environment=dev
# Ensure gitea namespace exists
sudo kubectl create namespace jamma-gitea
# Create directories if they don't already exist
mkdir --parent "/home/${USER}/Services/gitea"
# Clone charts repository
cd "/home/${USER}/Services/gitea" && git clone https://gitea.jamma.life/jmhbnz/charts.git
# Ensure the repository is up to date
cd charts/gitea && git pull
# Install the chart
helm upgrade --install -n jamma-gitea jamma-gitea . \
--set "gitea.admin.password=${gitea_admin_password}"