Gitea installation

来自WHY42
helm repo add gitea-charts https://dl.gitea.com/charts/
helm install gitea gitea-charts/gitea -f values.yaml -n gitea

values.yaml[1]:

redis-cluster:
  enabled: false
postgresql:
  enabled: true
postgresql-ha:
  enabled: false

persistence:
  enabled: true

ingress:
  enabled: true
  annotations:
    nginx.ingress.kubernetes.io/proxy-body-size: "50m"
  className: nginx
  hosts:
    - host: agent-git.ksord.com
      paths:
        - pathType: Prefix
          path: /
gitea:
  config:
    database:
      DB_TYPE: postgres
    session:
      PROVIDER: db
    cache:
      ADAPTER: memory
    queue:
      TYPE: level
    indexer:
      ISSUE_INDEXER_TYPE: bleve
      REPO_INDEXER_ENABLED: true
    service:
      DISABLE_REGISTRATION: true
    webhook:
      ALLOWED_HOST_LIST: 10.0.0.0/8
kubectl exec -it -n gitea gitea-74cd78d855-v7q77 bash
cat /data/gitea/conf/app.ini