204da41c45
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/baserow/baserow](https://gitlab.com/baserow/baserow) | patch | `73cee12` -> `a459ba6` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>baserow/baserow (docker.io/baserow/baserow)</summary> ### [`v1.35.1`](https://gitlab.com/baserow/baserow/blob/HEAD/changelog.md#Released-1351) [Compare Source](https://gitlab.com/baserow/baserow/compare/1.35.0...1.35.1) ##### New features - \[Builder] Allow to set CSS classes for any element [#​3752](https://gitlab.com/baserow/baserow/-/issues/3752) ##### Bug fixes - \[Database] Added missing translations for ImportFileModal.vue [#​3802](https://gitlab.com/baserow/baserow/-/issues/3802) - \[Database] Clears the pendingsearchvalueupdate entries of a table where the workspace table does not exist anymore. - \[Database] Fix a performance regression when deleting rows. - \[Database] Fix performance bug selecting from pendingsearchvalueupdate table. - \[Builder] Resolved a table element bug which allowed users to mark non-filterable fields as filterable to external users. </details> --- ### 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
image:
|
|
repository: docker.io/baserow/baserow
|
|
tag: 1.35.1@sha256:a459ba6dca1f440d34737c95ccc7974f0b3e61a121628459dc236a6d8d47439a
|
|
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:
|
|
type: tcp
|
|
readiness:
|
|
type: tcp
|
|
startup:
|
|
type: tcp
|
|
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_TRIGGER_SYNC_TEMPLATES_AFTER_MIGRATION: false
|
|
BASEROW_PUBLIC_URL: "http://127.0.0.1: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
|
|
redisUsername: "default"
|