Files
truecharts/charts/stable/baserow/values.yaml
T
TrueCharts Bot a83cefe4cf chore(deps): update container image baserow/baserow to v@32bff9b by renovate (#24295)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [baserow/baserow](https://gitlab.com/baserow/baserow) | digest |
`c7a436e` -> `32bff9b` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yLjEiLCJ1cGRhdGVkSW5WZXIiOiIzOC4yLjEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwidXBkYXRlL2RvY2tlci9nZW5lcmFsL25vbi1tYWpvciJdfQ==-->
2024-07-25 20:18:54 +02:00

81 lines
2.1 KiB
YAML

image:
repository: baserow/baserow
tag: 1.23.0@sha256:32bff9b60b22a8b815e41710e62d8c1245608518f15263661d313507681a757f
pullPolicy: IfNotPresent
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10228
protocol: http
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/_health"
readiness:
path: "/_health"
startup:
path: "/_health"
env:
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
DATABASE_USER: "{{ .Values.cnpg.main.user }}"
DATABASE_PORT: "5432"
REDIS_USER: "{{ .Values.redis.redisUsername }}"
REDIS_PORT: "6379"
REDIS_PROTOCOL: "redis"
BASEROW_CADDY_ADDRESSES: ":{{ .Values.service.main.ports.main.port }}"
# User Defined
BASEROW_PUBLIC_URL: "http://localhost:10228"
FROM_EMAIL: ""
EMAIL_SMTP: ""
EMAIL_SMTP_USE_TLS: ""
EMAIL_SMTP_HOST: ""
EMAIL_SMTP_PORT: 587
EMAIL_SMTP_USER: ""
EMAIL_SMTP_PASSWORD: ""
DATABASE_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
DATABASE_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
REDIS_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
REDIS_PASSWORD: "{{ .Values.redis.password }}"
SECRET_KEY:
secretKeyRef:
name: secrets
key: SECRET_KEY
persistence:
data:
enabled: true
mountPath: /baserow/data
cnpg:
main:
enabled: true
user: baserow
database: baserow
redis:
enabled: true
includeCommon: true
redisUsername: "default"
portal:
open:
enabled: true