f025e6aede
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/ctfd/ctfd | patch | `3.7.2` -> `3.7.3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
80 lines
2.1 KiB
YAML
80 lines
2.1 KiB
YAML
image:
|
|
repository: ghcr.io/ctfd/ctfd
|
|
tag: 3.7.3@sha256:90470e1fe0f93028ce6ac197b8942916ee157d4b5d33c8266c5bec7662e55ac3
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
targetPort: 8000
|
|
port: 10613
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
# filesystem | s3
|
|
UPLOAD_PROVIDER: filesystem
|
|
# set storage locations.
|
|
UPLOAD_FOLDER: "{{ .Values.persistence.uploads.mountPath }}"
|
|
LOG_FOLDER: "{{ .Values.persistence.logs.mountPath }}"
|
|
SECRET_KEY:
|
|
secretKeyRef:
|
|
name: ctfd-secrets
|
|
key: SECRET_KEY
|
|
DATABASE_PORT: 3306
|
|
DATABASE_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
|
|
DATABASE_USER: "{{ .Values.mariadb.mariadbUsername }}"
|
|
DATABASE_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
|
key: plainhost
|
|
DATABASE_PASSWORD: "{{ .Values.mariadb.password }}"
|
|
REDIS_URL:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: url
|
|
MAIL_USEAUTH: false
|
|
MAILFROM_ADDR: ""
|
|
MAIL_SERVER: ""
|
|
MAIL_PORT: 587
|
|
MAIL_USERNAME: ""
|
|
MAIL_PASSWORD: ""
|
|
MAIL_TLS: false
|
|
MAIL_SSL: false
|
|
# CTFd will not load any plugins which may alleviate issues preventing CTFd from starting, default is false.
|
|
SAFE_MODE: true
|
|
REVERSE_PROXY: false
|
|
# majorleaguecyber
|
|
OAUTH_CLIENT_ID: ""
|
|
OAUTH_CLIENT_SECRET: ""
|
|
|
|
mariadb:
|
|
enabled: true
|
|
includeCommon: true
|
|
mariadbUsername: ctfd
|
|
mariadbDatabase: ctfd
|
|
|
|
redis:
|
|
enabled: true
|
|
includeCommon: true
|
|
redisUsername: default
|
|
|
|
persistence:
|
|
uploads:
|
|
enabled: true
|
|
mountPath: "/uploads"
|
|
logs:
|
|
enabled: true
|
|
mountPath: "/logs"
|
|
|
|
portal:
|
|
open:
|
|
enabled: true
|