Files
truecharts/charts/stable/flowise/values.yaml
T
TrueCharts BotandGitHub ab4f746e45 chore(helm): update image docker.io/flowiseai/flowise 3.0.6 → 3.0.7 (#39571)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/flowiseai/flowise | patch | `382b54b` -> `11284f6` |

---

> [!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.

---

### 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=-->
2025-09-16 17:35:33 +00:00

84 lines
2.4 KiB
YAML

image:
repository: docker.io/flowiseai/flowise
pullPolicy: IfNotPresent
tag: 3.0.7@sha256:11284f6a28c32d83df10f9382e66c576d9e73715d7ab8c416554dfd9af4e7570
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
port: 3000
workload:
main:
podSpec:
containers:
main:
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
# Set paths
APIKEY_PATH: "{{.Values.persistence.api.mountPath }}"
LOG_PATH: "{{.Values.persistence.logs.mountPath }}"
SECRETKEY_PATH: "{{.Values.persistence.secrets.mountPath }}"
BLOB_STORAGE_PATH: "{{.Values.persistence.storage.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 }}"
DATABASE_SSL: false
# child | main
EXECUTION_MODE: main
# error | warn | info | verbose | debug
LOG_LEVEL: debug
DEBUG: true
# optional auth
FLOWISE_USERNAME: user
FLOWISE_PASSWORD: 1234
FLOWISE_FILE_SIZE_LIMIT: 50mb
CORS_ORIGINS: "*"
# IFRAME_ORIGINS="*"
FLOWISE_SECRETKEY_OVERWRITE:
secretKeyRef:
name: flowise-secrets
key: FLOWISE_SECRETKEY_OVERWRITE
# TOOL_FUNCTION_BUILTIN_DEP
# TOOL_FUNCTION_EXTERNAL_DEP
LANGCHAIN_TRACING_V2: false
# LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
# LANGCHAIN_API_KEY=your_api_key
# LANGCHAIN_PROJECT=your_project
persistence:
api:
enabled: true
mountPath: "/config/api"
logs:
enabled: true
mountPath: "/config/logs"
secrets:
enabled: true
mountPath: "/config/secrets"
storage:
enabled: true
mountPath: "/config/storage"
cnpg:
main:
enabled: true
user: flowise
database: flowise