diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-11-08 15:50:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 15:50:40 -0500 |
commit | 8a7101fdd39777fe153b232356c0f26750241d4a (patch) | |
tree | de44ca3e3db053e452af4e53ac55e37effe97d20 /docs | |
parent | 8ae5548188ed791aa2abfb50be251608989f40cb (diff) | |
download | gitea-8a7101fdd39777fe153b232356c0f26750241d4a.tar.gz gitea-8a7101fdd39777fe153b232356c0f26750241d4a.zip |
Add note about installation on kubernetes to docs (#13469)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/installation/on-kubernetes.en-us.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/content/doc/installation/on-kubernetes.en-us.md b/docs/content/doc/installation/on-kubernetes.en-us.md new file mode 100644 index 0000000000..025117f64a --- /dev/null +++ b/docs/content/doc/installation/on-kubernetes.en-us.md @@ -0,0 +1,27 @@ +--- +date: "2020-03-19T19:27:00+02:00" +title: "Install on Kubernetes" +slug: "install-on-kubernetes" +weight: 10 +toc: true +draft: false +menu: + sidebar: + parent: "installation" + name: "Kubernetes" + weight: 50 + identifier: "install-on-kubernetes" +--- + +# Installation with Helm (on Kubernetes) + +Gitea provides a Helm Chart to allow for installation on kubernetes. + +A non-customized install can be done with: + +``` +helm repo add gitea-charts https://dl.gitea.io/charts/ +helm install gitea gitea-charts/gitea +``` + +If you would like to customize your install, which includes kubernetes ingress, please refer to the complete [Gitea helm chart configuration details](https://gitea.com/gitea/helm-chart/) |