forked from DevFW-CICD/stacks
178 lines
4.2 KiB
YAML
178 lines
4.2 KiB
YAML
redis-cluster:
|
|
enabled: false
|
|
|
|
redis:
|
|
enabled: false
|
|
|
|
postgresql:
|
|
enabled: false
|
|
|
|
postgresql-ha:
|
|
enabled: false
|
|
|
|
persistence:
|
|
enabled: true
|
|
size: 200Gi
|
|
annotations:
|
|
everest.io/crypt-key-id: {{{ .Env.PVC_KMS_KEY_ID }}}
|
|
|
|
test:
|
|
enabled: false
|
|
|
|
deployment:
|
|
env:
|
|
- name: SSL_CERT_DIR
|
|
value: /etc/
|
|
|
|
extraVolumeMounts:
|
|
- mountPath: /etc/ssl/forgejo/elasticsearch.crt
|
|
name: elasticsearch-cert-volume
|
|
readOnly: true
|
|
- mountPath: /etc/ssl/forgejo/postgres.crt
|
|
name: postgres-cert-volume
|
|
readOnly: true
|
|
|
|
extraVolumes:
|
|
- name: elasticsearch-cert-volume
|
|
configMap:
|
|
defaultMode: 420
|
|
name: elasticsearch-cert
|
|
- name: postgres-cert-volume
|
|
secret:
|
|
secretName: otc-rds-tls-ca-cert
|
|
|
|
gitea:
|
|
additionalConfigFromEnvs:
|
|
- name: FORGEJO__storage__MINIO_ACCESS_KEY_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: forgejo-cloud-credentials
|
|
key: access-key
|
|
- name: FORGEJO__storage__MINIO_SECRET_ACCESS_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: forgejo-cloud-credentials
|
|
key: secret-key
|
|
- name: FORGEJO__queue__CONN_STR
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: redis-forgejo-cloud-credentials
|
|
key: connection-string
|
|
- name: FORGEJO__session__PROVIDER_CONFIG
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: redis-forgejo-cloud-credentials
|
|
key: connection-string
|
|
- name: FORGEJO__cache__HOST
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: redis-forgejo-cloud-credentials
|
|
key: connection-string
|
|
- name: FORGEJO__database__HOST
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-forgejo-cloud-credentials
|
|
key: host_port
|
|
- name: FORGEJO__database__NAME
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-forgejo-cloud-credentials
|
|
key: database
|
|
- name: FORGEJO__database__USER
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-forgejo-cloud-credentials
|
|
key: username
|
|
- name: FORGEJO__database__PASSWD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-forgejo-cloud-credentials
|
|
key: password
|
|
- name: FORGEJO__indexer__ISSUE_INDEXER_CONN_STR
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: elasticsearch-cloud-credentials
|
|
key: connection-string
|
|
- name: FORGEJO__mailer__PASSWD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: email-user-credentials
|
|
key: connection-string
|
|
|
|
admin:
|
|
existingSecret: gitea-credential
|
|
|
|
config:
|
|
indexer:
|
|
ISSUE_INDEXER_ENABLED: true
|
|
ISSUE_INDEXER_TYPE: elasticsearch
|
|
# TODO next
|
|
REPO_INDEXER_ENABLED: false
|
|
# REPO_INDEXER_TYPE: meilisearch # not yet working
|
|
|
|
storage:
|
|
MINIO_ENDPOINT: obs.eu-de.otc.t-systems.com:443
|
|
STORAGE_TYPE: minio
|
|
MINIO_LOCATION: eu-de
|
|
MINIO_BUCKET: edp-forgejo-{{{ .Env.CLUSTER_ENVIRONMENT }}}
|
|
MINIO_USE_SSL: true
|
|
|
|
queue:
|
|
TYPE: redis
|
|
|
|
session:
|
|
PROVIDER: redis
|
|
|
|
cache:
|
|
ENABLED: true
|
|
ADAPTER: redis
|
|
|
|
service:
|
|
DISABLE_REGISTRATION: true
|
|
|
|
other:
|
|
SHOW_FOOTER_VERSION: false
|
|
SHOW_FOOTER_TEMPLATE_LOAD_TIME: false
|
|
|
|
database:
|
|
DB_TYPE: postgres
|
|
#SSL_MODE: verify-full
|
|
|
|
server:
|
|
DOMAIN: '{{{ .Env.DOMAIN_GITEA }}}'
|
|
ROOT_URL: 'https://{{{ .Env.DOMAIN_GITEA }}}:443'
|
|
|
|
mailer:
|
|
ENABLED: true
|
|
USER: ipcei-cis-devfw@mms-support.de
|
|
PROTOCOL: smtps
|
|
FROM: '"IPCEI CIS DevFW" <ipcei-cis-devfw@mms-support.de>'
|
|
SMTP_ADDR: mail.mms-support.de
|
|
SMTP_PORT: 465
|
|
|
|
service:
|
|
ssh:
|
|
type: NodePort
|
|
nodePort: 32222
|
|
externalTrafficPolicy: Local
|
|
|
|
image:
|
|
pullPolicy: "IfNotPresent"
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
#tag: "8.0.3"
|
|
# Adds -rootless suffix to image name
|
|
rootless: true
|
|
|
|
forgejo:
|
|
runner:
|
|
enabled: true
|
|
image:
|
|
tag: latest
|
|
# replicas: 3
|
|
config:
|
|
runner:
|
|
labels:
|
|
- docker:docker://node:16-bullseye
|
|
- self-hosted:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|
|
- ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|
|
- ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|