apps: various value fixes for new apps
This commit is contained in:
parent
6959084304
commit
b9605b0ff2
|
@ -33,9 +33,13 @@ data:
|
||||||
hosts:
|
hosts:
|
||||||
- "${n8n_domain}"
|
- "${n8n_domain}"
|
||||||
|
|
||||||
secret:
|
config:
|
||||||
database:
|
database:
|
||||||
type: sqlite
|
type: sqlite
|
||||||
|
host: "${n8n_domain}"
|
||||||
|
port: 443
|
||||||
|
protocol: https
|
||||||
|
timezone: "Europe/Berlin"
|
||||||
|
|
||||||
# TODO Adjust n8n Mailing config
|
# TODO Adjust n8n Mailing config
|
||||||
# mailer:
|
# mailer:
|
||||||
|
|
|
@ -46,7 +46,7 @@ data:
|
||||||
ISSUE_INDEXER_TYPE: bleve
|
ISSUE_INDEXER_TYPE: bleve
|
||||||
REPO_INDEXER_ENABLED: true
|
REPO_INDEXER_ENABLED: true
|
||||||
|
|
||||||
APP_NAME: "Forge for ${company_name}"
|
APP_NAME: "Forge for ${org_name}"
|
||||||
repository:
|
repository:
|
||||||
DEFAULT_PUSH_CREATE_PRIVATE: false
|
DEFAULT_PUSH_CREATE_PRIVATE: false
|
||||||
ENABLE_PUSH_CREATE_USER: true
|
ENABLE_PUSH_CREATE_USER: true
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
apiVersion: secretgenerator.mittwald.de/v1alpha1
|
apiVersion: v1
|
||||||
kind: StringSecret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
name: stackspin-calcom-keys
|
name: stackspin-calcom-keys
|
||||||
namespace: stackspout
|
namespace: stackspout
|
||||||
spec:
|
stringData:
|
||||||
data:
|
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
||||||
DATABASE_URL: "postgresql://calcom:${postgresql_password}@calcom-postgresql/calcom"
|
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
||||||
NEXT_PUBLIC_WEBAPP_URL: "https://${calcom_domain}"
|
NEXTAUTH_SECRET: "${nextauth_secret}"
|
||||||
NEXTAUTH_SECRET: "${nextauth_secret}"
|
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
||||||
CALENDSO_ENCRYPTION_KEY: "${calendso_key}"
|
|
||||||
fields: []
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ data:
|
||||||
- name: MAIL_FROM_ADDRESS
|
- name: MAIL_FROM_ADDRESS
|
||||||
value: "${outgoing_mail_from_address}"
|
value: "${outgoing_mail_from_address}"
|
||||||
- name: MAIL_FROM_NAME
|
- name: MAIL_FROM_NAME
|
||||||
value: "${business_name}"
|
value: "${org_name}"
|
||||||
|
|
||||||
# Missing: invoiceninja OpenID Connect Single Sign-On Configuration
|
# Missing: invoiceninja OpenID Connect Single Sign-On Configuration
|
||||||
# - name: Stackspin
|
# - name: Stackspin
|
||||||
|
|
|
@ -6,12 +6,13 @@ metadata:
|
||||||
data:
|
data:
|
||||||
values.yaml: |
|
values.yaml: |
|
||||||
# https://github.com/zammad/zammad-helm/blob/main/zammad/values.yaml
|
# https://github.com/zammad/zammad-helm/blob/main/zammad/values.yaml
|
||||||
|
# TODO https://github.com/zammad/zammad-helm/issues/259
|
||||||
commonLabels:
|
commonLabels:
|
||||||
stackspin.net/backupSet: "zammad"
|
stackspin.net/backupSet: "zammad"
|
||||||
podLabels:
|
podLabels:
|
||||||
stackspin.net/backupSet: "zammad"
|
stackspin.net/backupSet: "zammad"
|
||||||
podAnnotations:
|
podAnnotations:
|
||||||
backup.velero.io/backup-volumes: "data"
|
backup.velero.io/backup-volumes: "zammad-var"
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@ -45,11 +46,11 @@ data:
|
||||||
database: "zammad"
|
database: "zammad"
|
||||||
postgresPassword: "${postgresql_postgres_password}"
|
postgresPassword: "${postgresql_postgres_password}"
|
||||||
password: "${postgresql_password}"
|
password: "${postgresql_password}"
|
||||||
|
podAnnotations:
|
||||||
|
backup.velero.io/backup-volumes: "data"
|
||||||
primary:
|
primary:
|
||||||
persistence:
|
persistence:
|
||||||
existingClaim: zammad-postgres
|
existingClaim: zammad-postgres
|
||||||
podAnnotations:
|
|
||||||
backup.velero.io/backup-volumes: "data"
|
|
||||||
|
|
||||||
minio:
|
minio:
|
||||||
auth:
|
auth:
|
||||||
|
|
Loading…
Reference in New Issue