Files
truecharts/charts/stable/flowise/values.yaml
T
TrueCharts BotandGitHub 9333298b18 chore(deps): update container image flowiseai/flowise to v1.6.5@452d8ac by renovate (#20700)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| flowiseai/flowise | patch | `1.6.4` -> `1.6.5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjI5MC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-04-13 08:21:09 +02:00

90 lines
2.5 KiB
YAML

image:
repository: flowiseai/flowise
pullPolicy: IfNotPresent
tag: 1.6.5@sha256:452d8ac56fb2f58f58290a0775d7fa65c6652c745b627c770d6955963448dcdd
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
port: 3000
workload:
main:
podSpec:
containers:
main:
args:
- flowise
- start
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
portal:
open:
enabled: true