core-deployments/woodpecker/values/values.yaml
Aaron Riedel f4c42bf3b7
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
[woodpecker] fixes
2024-10-16 21:36:08 +02:00

38 lines
991 B
YAML

---
server:
ingress:
# -- Enable the ingress for the server component
enabled: true
# -- Add annotations to the ingress
annotations:
# kubernetes.io/ingress.class: nginx
kubernetes.io/tls-acme: "true"
hosts:
- host: woodpecker.ar21.de
paths:
- path: /
backend:
serviceName: woodpecker-svc
servicePort: 80
tls:
- hosts:
- woodpecker.ar21.de
secretName: woodpecker-tls-key
statefulSet:
replicaCount: 1
env:
WOODPECKER_ADMIN: 'aaron'
WOODPECKER_HOST: 'https://woodpecker.ar21.de'
WOODPECKER_OPEN: true
WOODPECKER_FORGEJO: true
WOODPECKER_FORGEJO_URL: 'https://git.ar21.de'
WOODPECKER_LOG_LEVEL: "trace"
extraSecretNamesForEnvFrom:
- woodpecker-forgejo
agent:
extraSecretNamesForEnvFrom:
- woodpecker-forgejo
replicaCount: 3
env:
WOODPECKER_MAX_WORKFLOWS: 2
WOODPECKER_BACKEND_K8S_STORAGE_CLASS: 'longhorn-local'