Files
truecharts/charts/stable/flowise/values.yaml
T
TrueCharts Bot e93c793aa1 chore(deps): update container image flowiseai/flowise to v1.4.7@f227fcd by renovate (#16464)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| flowiseai/flowise | patch | `1.4.6` -> `1.4.7` |

---

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

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2023-12-25 01:50:04 +01:00

81 lines
2.0 KiB
YAML

image:
repository: flowiseai/flowise
pullPolicy: IfNotPresent
tag: 1.4.7@sha256:f227fcd1724afaf72661d2063378975ca0ebe30ad64520b5c48d786a6ce49f97
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
port: 3000
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/"
readiness:
path: "/"
startup:
path: "/"
args:
- npx
- flowise
- start
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
# Set paths
APIKEY_PATH: "{{.Values.persistence.api.mountPath }}"
LOG_PATH: "{{.Values.persistence.logs.mountPath }}"
# Postgres DB
DATABASE_TYPE: postgres
OVERRIDE_DATABASE: true
DATABASE_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
DATABASE_PORT: 5432
DATABASE_USER: "{{ .Values.cnpg.main.user }}"
DATABASE_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
# child | main
EXECUTION_MODE: main
# error | warn | info | verbose | debug
LOG_LEVEL: debug
DEBUG: true
# optional auth
FLOWISE_USERNAME: user
FLOWISE_PASSWORD: 1234
PASSPHRASE:
secretKeyRef:
name: flowise-secrets
key: PASSPHRASE
# TOOL_FUNCTION_BUILTIN_DEP
# TOOL_FUNCTION_EXTERNAL_DEP
persistence:
api:
enabled: true
mountPath: "/config/api"
logs:
enabled: true
mountPath: "/config/logs"
cnpg:
main:
enabled: true
user: flowise
database: flowise
portal:
open:
enabled: true