2 Commits

Author SHA1 Message Date
Daniël Groothuis
78e0807f5f chore(gitea-runners): Updated values for Dind support
Some checks failed
Validate K8s manifests / validate-manifests (push) Failing after 38s
2025-10-28 15:16:13 +01:00
Daniël Groothuis
3ee97913b5 chore(cleanup): Removed secret definition 2025-10-28 13:04:59 +01:00
2 changed files with 2 additions and 26 deletions

View File

@@ -48,10 +48,11 @@ statefulset:
# See full example here: https://gitea.com/gitea/act_runner/src/branch/main/internal/pkg/config/config.example.yaml # See full example here: https://gitea.com/gitea/act_runner/src/branch/main/internal/pkg/config/config.example.yaml
config: | config: |
log: log:
level: debug level: info
cache: cache:
enabled: false enabled: false
container: container:
privileged: true
require_docker: true require_docker: true
docker_timeout: 300s docker_timeout: 300s

View File

@@ -1,25 +0,0 @@
---
apiVersion: external-secrets.io/v1
kind: ExternalSecret
metadata:
name: gitea-conf-smtp
spec:
refreshInterval: 1h
secretStoreRef:
name: platform
kind: ClusterSecretStore
target:
name: gitea-conf-smtp
template:
stringData:
mailer: |
ENABLED: <%= JSON.parse(data.jsonConfig).ENABLED %>
FROM: <%= JSON.parse(data.jsonConfig).FROM %>
PASSWD: <%= JSON.parse(data.jsonConfig).PASSWD %>
PROTOCOL: <%= JSON.parse(data.jsonConfig).PROTOCOL %>
SMTP_ADDR: <%= JSON.parse(data.jsonConfig).SMTP_ADDR %>
SMTP_PORT: <%= JSON.parse(data.jsonConfig).SMTP_PORT %>
USER: <%= JSON.parse(data.jsonConfig).USER %>
data:
- key: /gitea/jsonConfig
name: jsonConfig