TrueChartsCatalogClone/incubator/monica/0.0.6/ix_values.yaml

59 lines
1.4 KiB
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/monica
tag: v3.5.0@sha256:5f4af565ef3b381c31abc8415d701b7b0019e9986b026cc2dfb263130f5e4214
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- environment variables. See [monica documentation](https://raw.githubusercontent.com/monicahq/monica/master/.env.example) for more details.
# @default -- See below
env:
# -- Use `local` if you want to install Monica as a development version. Use `production` otherwise.
APP_ENV: production
# -- The URL of your application.
APP_URL: https://crm.k8s-at-home.com
DB_DATABASE: monica
DB_USERNAME: monica
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10119
targetPort: 80
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
config:
enabled: true
mountPath: /var/www/html/storage
envValueFrom:
DB_HOST:
secretKeyRef:
name: mariadbcreds
key: plainhost
DB_PASSWORD:
secretKeyRef:
name: mariadbcreds
key: mariadb-password
APP_KEY:
secretKeyRef:
name: appkey
key: appkey
mariadb:
enabled: true
mariadbUsername: monica
mariadbDatabase: monica
existingSecret: "mariadbcreds"