Files
truecharts/charts/stable/pydio-cells/values.yaml
T
ac9cc7f736 chore(questions): replace questions parts with templates (#3402)
* chore(questions): replace port parts with templates

* chore(questions): replace controller parts with templates

* remove tons of whitespce

* remove quotes from strings on templates

* make complete controller an include

* default to recreate

* remove replica and strategies as it's covered from controllerStrtegies include

* remove whitespace again

* replace controllertype with include (deployment/daemonset/statefulset)

* replace advanced port part except targetport

* remove more quotes

* add hidden toggle of enable the port

* new includes

* update build script

* controller deploy/stateful/deamon template changes

* replace controllerStrategies with replicas, replica#, strategy, recreate

* move 2 templates into a subfolder

* remove quotes

* remove disabled portals from questions and defined them on values

* remove enabled portal from the questions and add it on values

* one more app

* Portal cleanup

* remove portal templates

* add more includes

* replace portal links

* move some templates in folders

* replace ingressRoot with template

* more grouping

* replace persistenceroot with template

* replace serviceExpertRoot

* replace serviceroot

* fix a rogue one

* vctRoot

* securityContext cleanup

* remove quotes from templates on string

* replace vctRoot

* replace advanedSecurityRoot

* replace podsecurity root

* Update .github/scripts/build-catalog.sh

* Update values.yaml

* remove dupe portal

* update build-release script

* fix paths

* fix apps with imageSelector

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-08-08 23:25:02 +02:00

118 lines
2.7 KiB
YAML

image:
repository: tccr.io/truecharts/pydio-cells
pullPolicy: IfNotPresent
tag: v3.0.9@sha256:8eb6e4fa8a6ad27056683a97c8c4e2a61f1a6324e9272ac0fb0018097abd1d7e
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
configmap:
install:
enabled: true
data:
pydiocells-install: |-
frontendapplicationtitle: {{ .Values.pydioinstall.title }}
frontendlogin: {{ .Values.pydioinstall.username }}
frontendpassword: {{ .Values.pydioinstall.password }}
frontendrepeatpassword: {{ .Values.pydioinstall.password }}
dbconnectiontype: tcp
dbtcphostname: {{ printf "%v-%v" .Release.Name "mariadb" }}
dbtcpport: 3306
dbtcpname: {{ .Values.mariadb.mariadbDatabase }}
dbtcpuser: {{ .Values.mariadb.mariadbUsername }}
dbtcppassword: {{ .Values.mariadb.mariadbPassword | trimAll "\"" }}
env:
CELLS_EXTERNAL: ""
CELLS_GRPC_EXTERNAL: "{{ .Values.service.gprc.ports.gprc.port }}"
CELLS_HEALTHCHECK: "{{ .Values.service.healthcheck.ports.healthcheck.port }}"
CELLS_BIND: "0.0.0.0:{{ .Values.service.main.ports.main.port }}"
CELLS_WORKING_DIR: "/cells"
CELLS_DATA_DIR: "/cells/data"
CELLS_LOG_DIR: "/cells/logs"
CELLS_SERVICES_DIR: "/cells/services"
CELLS_INSTALL_YAML: "/cells/install.yml"
pydioinstall:
username: "admin"
password: "supersecret"
title: "Pydio Cells"
probes:
liveness:
custom: true
spec:
httpGet:
scheme: HTTP
path: "/healthcheck"
port: 10162
readiness:
custom: true
spec:
httpGet:
scheme: HTTP
path: "/healthcheck"
port: 10162
startup:
custom: true
spec:
httpGet:
scheme: HTTP
path: "/healthcheck"
port: 10162
service:
main:
ports:
main:
protocol: HTTPS
port: 10150
gprc:
enabled: true
ports:
gprc:
enabled: true
port: 33060
healthcheck:
enabled: true
ports:
healthcheck:
enabled: true
port: 10162
persistence:
cells:
enabled: true
mountPath: "/cells"
data:
enabled: true
mountPath: "/cells/data"
logs:
enabled: true
mountPath: "/cells/logs"
services:
enabled: true
mountPath: "/cells/services"
pydiocells-install:
enabled: "true"
mountPath: "/cells/install.yml"
subPath: "pydiocells-install"
type: "custom"
volumeSpec:
configMap:
name: '{{ printf "%v-install" (include "tc.common.names.fullname" .) }}'
mariadb:
enabled: true
mariadbUsername: pydiocells
mariadbDatabase: pydiocells
existingSecret: "mariadbcreds"
portal:
enabled: true