DEV Community

Malik Benkirane
Malik Benkirane

Posted on

gitea doctl

alias ks=kubectl # not to be confused with kube alias k
alias k9=k9s      # handy terminal user interface (HTUI)
Enter fullscreen mode Exit fullscreen mode

OOR aka. Open On Request vs. OSS aka. Open Source Software

At the moment of writing this - and this symptomatic ADHD behavior -X is about a side project, and, a side note on this side project. So to tell the cat house is willing to produce cat memes and cat NFTs of course! That is finally need to be layered under security measures so that you are the only owner of the data being publicly available but ciphered in a way you remain the only one to be able to manage it (revoke access to others, grant access to others, etc.)

ks port-forward svc/gitea-http 3000
Enter fullscreen mode Exit fullscreen mode

Ikagai The Kingdom of Heaven is Witihin

And what you were waiting for was this helm gist:

# if you never had the chance to get the repo yet
helm repo add gitea-charts https://dl.gitea.com/charts/ 
helm repo update

# saving precious resources ๐Ÿ”Œ๐Ÿค‘
# simple install (no ha for postgres and no redis) and you can save resources 
helm install \
    gitea \
    gitea-charts/gitea \ 
    --set=postgresql-ha.enabled=false \
    --set=redis-cluster.enabled=false
Enter fullscreen mode Exit fullscreen mode

See also

https://gitea.com/gitea/helm-chart#user-content-minimal-configuration

Top comments (0)