61 行
1.6 KiB
YAML
61 行
1.6 KiB
YAML
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChart
|
|
metadata:
|
|
name: gitea
|
|
namespace: infra-devops
|
|
spec:
|
|
repo: https://dl.gitea.com/charts
|
|
chart: gitea
|
|
targetNamespace: infra-devops
|
|
valuesContent: |-
|
|
redis-cluster:
|
|
enabled: false
|
|
postgresql-ha:
|
|
enabled: false
|
|
gitea:
|
|
config:
|
|
APP_NAME: Git.dev.cm
|
|
RUN_MODE: prod
|
|
server:
|
|
DOMAIN: git.dev.cm
|
|
ROOT_URL: https://git.dev.cm/
|
|
database:
|
|
DB_TYPE: postgres
|
|
HOST: postgresql-ha-pgpool.infra-data:5432
|
|
NAME: gitea
|
|
USER: rohow
|
|
PASSWD: L#GRtTR2QuL@20pm6+c~
|
|
session:
|
|
PROVIDER: redis
|
|
PROVIDER_CONFIG: redis://:ribiPwYQNU6GWxCYR0Nj@redis-master.infra-data:6379/0
|
|
cache:
|
|
ADAPTER: redis
|
|
HOST: redis://:ribiPwYQNU6GWxCYR0Nj@redis-master.infra-data:6379/0?pool_size=100&idle_timeout=180s
|
|
queue:
|
|
TYPE: redis
|
|
CONN_STR: redis://:ribiPwYQNU6GWxCYR0Nj@redis-master.infra-data:6379/0
|
|
service:
|
|
DISABLE_REGISTRATION: true
|
|
NO_REPLY_ADDRESS: noreply.dev.cm
|
|
picture:
|
|
GRAVATAR_SOURCE: https://cravatar.cn/avatar/
|
|
i18n:
|
|
LANGS: zh-CN,en-US
|
|
NAMES: 简体中文,English
|
|
extraVolumes:
|
|
- name: gitea-custom-templates-volume
|
|
configMap:
|
|
name: gitea-custom-templates
|
|
items:
|
|
- key: home.tmpl
|
|
path: home.tmpl
|
|
- key: extra_links.tmpl
|
|
path: custom/extra_links.tmpl
|
|
extraContainerVolumeMounts:
|
|
- name: gitea-custom-templates-volume
|
|
readOnly: true
|
|
mountPath: /data/gitea/templates
|
|
|
|
|
|
|