be29da90c9
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/ctfd/ctfd | patch | `476211f` → `5b780b3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9jdGZkIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==-->
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: ghcr.io/ctfd/ctfd
|
|
tag: 3.8.6@sha256:5b780b3628f2fe7bc0cdf9567d51244c2e8b5bb93f227fdac0532c94ae43f7c7
|
|
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
|
|
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: ""
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
redis:
|
|
enabled: true
|
|
redisUsername: default
|
|
|
|
persistence:
|
|
uploads:
|
|
enabled: true
|
|
mountPath: "/uploads"
|
|
logs:
|
|
enabled: true
|
|
mountPath: "/logs"
|