2021-10-19 12:20:06 +00:00
|
|
|
image:
|
|
|
|
# -- image repository
|
2021-12-03 12:02:44 +00:00
|
|
|
repository: tccr.io/truecharts/openkm-ce
|
2021-10-19 12:20:06 +00:00
|
|
|
# -- image tag
|
2022-04-28 05:41:47 +00:00
|
|
|
tag: v6.3.11@sha256:4b44d325179774fcca1a2dc4990dc442a25208b6d0e799e12a04c32e2bfb9895
|
2021-10-19 12:20:06 +00:00
|
|
|
# -- image pull policy
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
|
|
|
initContainers:
|
|
|
|
init:
|
|
|
|
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
|
|
|
|
command: ["/config/init/init.sh"]
|
|
|
|
volumeMounts:
|
|
|
|
- name: init
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/config/init"
|
2021-10-19 12:20:06 +00:00
|
|
|
- name: config
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/opt/tomcat"
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
securityContext:
|
|
|
|
readOnlyRootFilesystem: false
|
|
|
|
runAsNonRoot: false
|
|
|
|
|
|
|
|
podSecurityContext:
|
|
|
|
runAsUser: 0
|
|
|
|
runAsGroup: 0
|
|
|
|
|
|
|
|
# -- environment variables. See more environment variables in the [openkm documentation](https://openkm.org/docs).
|
|
|
|
# @default -- See below
|
|
|
|
env:
|
|
|
|
# -- Set the container timezone
|
|
|
|
|
|
|
|
# -- Configures service settings for the chart.
|
|
|
|
# @default -- See values.yaml
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
2021-11-28 09:26:31 +00:00
|
|
|
port: 10090
|
2021-11-06 21:55:18 +00:00
|
|
|
targetPort: 8080
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
# -- Configure persistence settings for the chart under this key.
|
|
|
|
# @default -- See values.yaml
|
|
|
|
persistence:
|
|
|
|
config:
|
|
|
|
enabled: true
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/opt/tomcat/repository"
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
postgresql:
|
|
|
|
enabled: true
|
|
|
|
existingSecret: "dbcreds"
|
|
|
|
postgresqlUsername: openkm
|
|
|
|
postgresqlDatabase: openkm
|