Files
truecharts/charts/stable/redmine/values.yaml
T
cd111d3aef chore(deps): update docker general non-major (#3356)
* chore(deps): update docker general non-major

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

* Update charts/stable/gitea/Chart.yaml

* Update charts/incubator/thunderbird/Chart.yaml

* Update charts/incubator/thunderbird/Chart.yaml

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

* fix precommit

* skip [skip ci]

* trigger

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros kois <s.kois@outlook.com>
2022-08-02 00:05:53 +00:00

51 lines
1.2 KiB
YAML

image:
repository: tccr.io/truecharts/redmine
pullPolicy: IfNotPresent
tag: v5.0.2@sha256:7a226e1d5d68091cbaba1439028d6519822bb89db0e71a83f8512aa4b799fde5
env:
REDMINE_DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
REDMINE_DB_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
REDMINE_DB_PORT: "5432"
# Anything but empty means true, empty means false
REDMINE_NO_DB_MIGRATE: '{{ ternary "true" "" .Values.redmine.no_db_migrate }}'
REDMINE_PLUGINS_MIGRATE: '{{ ternary "true" "" .Values.redmine.plugins_migrate }}'
REDMINE_DB_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
REDMINE_DB_POSTGRES:
secretKeyRef:
name: dbcreds
key: plainhost
REDMINE_SECRET_KEY_BASE:
secretKeyRef:
name: redmine-secrets
key: REDMINE_SECRET_KEY_BASE
redmine:
plugins_migrate: true
no_db_migrate: false
securityContext:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
port: 10171
targetPort: 3000
persistence:
data:
enabled: true
mountPath: "/usr/src/redmine/files"
# Enabled postgres
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: redmine
postgresqlDatabase: redmine