summaryrefslogtreecommitdiffstats
path: root/docs/content/doc/installation/on-kubernetes.zh-cn.md
diff options
context:
space:
mode:
authorJohn Olheiser <john.olheiser@gmail.com>2023-07-25 21:00:14 -0500
committerGitHub <noreply@github.com>2023-07-26 10:00:14 +0800
commit4033d95dbf1eb525130a0701bfc58c0844220f7c (patch)
tree1a710272b1a3157fa3d26246ef2a7bd752d09571 /docs/content/doc/installation/on-kubernetes.zh-cn.md
parent43213b816d4cc4de9dd46a7b667925516e305443 (diff)
downloadgitea-4033d95dbf1eb525130a0701bfc58c0844220f7c.tar.gz
gitea-4033d95dbf1eb525130a0701bfc58c0844220f7c.zip
Docusaurus-ify 1.20 (#26052)
See https://github.com/go-gitea/gitea/pull/26051 --------- Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: JonRB <4564448+eeyrjmr@users.noreply.github.com>
Diffstat (limited to 'docs/content/doc/installation/on-kubernetes.zh-cn.md')
-rw-r--r--docs/content/doc/installation/on-kubernetes.zh-cn.md84
1 files changed, 0 insertions, 84 deletions
diff --git a/docs/content/doc/installation/on-kubernetes.zh-cn.md b/docs/content/doc/installation/on-kubernetes.zh-cn.md
deleted file mode 100644
index 83647a2eab..0000000000
--- a/docs/content/doc/installation/on-kubernetes.zh-cn.md
+++ /dev/null
@@ -1,84 +0,0 @@
----
-date: "2020-03-19T19:27:00+02:00"
-title: "在 Kubernetes 中安装 Gitea"
-slug: "install-on-kubernetes"
-weight: 80
-toc: false
-draft: false
-aliases:
- - /zh-cn/install-on-kubernetes
-menu:
- sidebar:
- parent: "installation"
- name: "在 Kubernetes 中安装 Gitea"
- weight: 80
- identifier: "install-on-kubernetes"
----
-
-# 使用 Helm 在 Kubernetes 云原生环境中安装 Gitea
-
-Gitea 已经提供了便于在 Kubernetes 云原生环境中安装所需的 Helm Chart
-
-默认安装指令为:
-
-```bash
-helm repo add gitea https://dl.gitea.com/charts
-helm repo update
-helm install gitea gitea/gitea
-```
-
-如果采用默认安装指令,Helm 会部署单实例的 Gitea, PostgreSQL, Memcached。若您想实现自定义安装(包括配置 Gitea 集群、NGINX Ingress、MySQL、MariaDB、持久存储等),请前往阅读:[Gitea Helm Chart](https://gitea.com/gitea/helm-chart/)
-
-您也可以通过 `helm show` 命令导出 `README.md` 和配置文件 `values.yaml` 进行学习和编辑,例如:
-
-```bash
-helm show values gitea/gitea > values.yaml
-helm show readme gitea/gitea > README.md
-
-# 使用自定义的配置文件 values.yaml
-helm install gitea -f values.yaml gitea/gitea
-```
-
-## 运行状况检查接口
-
-Gitea 附带了一个运行状况检查接口 `/api/healthz`,你可以像这样在 Kubernetes 中配置它:
-
-```yaml
- livenessProbe:
- httpGet:
- path: /api/healthz
- port: http
- initialDelaySeconds: 200
- timeoutSeconds: 5
- periodSeconds: 10
- successThreshold: 1
- failureThreshold: 10
-```
-
-成功的运行状况检查响应代码为 HTTP `200`,下面是示例:
-
-```
-HTTP/1.1 200 OK
-
-
-{
- "status": "pass",
- "description": "Gitea: Git with a cup of tea",
- "checks": {
- "cache:ping": [
- {
- "status": "pass",
- "time": "2022-02-19T09:16:08Z"
- }
- ],
- "database:ping": [
- {
- "status": "pass",
- "time": "2022-02-19T09:16:08Z"
- }
- ]
- }
-}
-```
-
-有关更多信息,请参考 Kubernetes 文档 [配置存活、就绪和启动探测器](https://kubernetes.io/zh-cn/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)