TrueChartsClone/charts/stable/openhab/values.yaml

61 lines
1.3 KiB
YAML

image:
repository: tccr.io/truecharts/openhab
pullPolicy: IfNotPresent
tag: 3.4.1@sha256:f03178d57d0dddddc172d004b9a2445716ba1ca86bc2394f600e309a67fd55bd
service:
main:
ports:
main:
protocol: HTTP
port: 10169
https:
enabled: true
ports:
https:
protocol: HTTPS
enabled: true
port: 10170
configmap:
init:
enabled: true
data:
enable-console-logging.sh: |
echo 'Enabling console logging.'
sed -i -E 's|(<AppenderRef ref="OSGI"/>).*|\1<AppenderRef ref="STDOUT"/>|' /openhab/userdata/etc/log4j2.xml
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
env:
OPENHAB_HTTP_PORT: "{{ .Values.service.main.ports.main.port }}"
OPENHAB_HTTPS_PORT: "{{ .Values.service.https.ports.https.port }}"
persistence:
config:
enabled: true
mountPath: "/openhab/conf"
addons:
enabled: true
mountPath: "/openhab/addons"
userdata:
enabled: true
mountPath: "/openhab/userdata"
init:
enabled: true
mountPath: /etc/cont-init.d/enable-console-logging.sh
subPath: enable-console-logging.sh
type: custom
volumeSpec:
configMap:
name: '{{ printf "%v-init" (include "tc.common.names.fullname" .) }}'
portal:
enabled: true