4f6b6f1884
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/flowiseai/flowise | patch | `1c99d1f` → `3f96eb1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) 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:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvZmxvd2lzZSIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
85 lines
2.5 KiB
YAML
85 lines
2.5 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/flowiseai/flowise
|
|
pullPolicy: IfNotPresent
|
|
tag: 3.1.2@sha256:3f96eb1fe88ba038a028b024f98d9f9cf7c62bdbe170ea190d90698936165f94
|
|
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
|