Added README.org for gitea.

This commit is contained in:
2022-08-24 16:57:19 +12:00
parent c0e4780ec6
commit 39458bcf2e

23
gitea/README.org Normal file
View File

@ -0,0 +1,23 @@
#+TITLE: Gitea git server
#+AUTHOR: James Blair
#+EMAIL: mail@jamesblair.net
#+DATE: <2022-08-24 Wed 16:45>
[[https://github.com/go-gitea/gitea][Gitea]] is a painless self-hosted Git service.
I created this helm chart for self-hosting gitea in a container on ~k3s~. Complete the steps below to deploy this chart.
#+NAME: Deploy gitea via helm
#+begin_src tmate
# 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://github.com/jmhbnz/charts.git
# Install the chart
helm upgrade --install -n jamma-gitea jamma-gitea charts/jellyfin
#+end_src