mirror of
https://github.com/lordmathis/dev-cluster.git
synced 2025-12-23 00:54:26 +00:00
Use variable susbtitution in manifests
This commit is contained in:
@@ -8,7 +8,7 @@ spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- match: Host(`git.example.com`)
|
||||
- match: Host(`${GITEA_DOMAIN}`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: gitea-http
|
||||
|
||||
@@ -24,7 +24,7 @@ image:
|
||||
gitea:
|
||||
admin:
|
||||
existingSecret: gitea-admin-secret
|
||||
email: "admin@example.com"
|
||||
email: "${GITEA_ADMIN_EMAIL}"
|
||||
config:
|
||||
actions:
|
||||
ENABLED: true
|
||||
@@ -40,8 +40,8 @@ gitea:
|
||||
TYPE: channel
|
||||
server:
|
||||
BUILTIN_SSH_SERVER_USER: git
|
||||
ROOT_URL: https://git.example.com
|
||||
DOMAIN: git.example.com
|
||||
ROOT_URL: https://${GITEA_DOMAIN}
|
||||
DOMAIN: ${GITEA_DOMAIN}
|
||||
SSH_CREATE_AUTHORIZED_KEYS_FILE: false
|
||||
LANDING_PAGE: explore
|
||||
service:
|
||||
|
||||
Reference in New Issue
Block a user