ff47091bd5
This PR contains the following updates: | Package | Update | Change | |---|---|---| | flowiseai/flowise | patch | `2.1.0` -> `2.1.1` | --- > [!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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44OC4wIiwidXBkYXRlZEluVmVyIjoiMzguODguMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
87 lines
2.4 KiB
YAML
87 lines
2.4 KiB
YAML
image:
|
|
repository: flowiseai/flowise
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.1.1@sha256:a938d3d857ea2b31804c185110e273f4eef52e85f88d150e60476f3762529b92
|
|
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
|
|
portal:
|
|
open:
|
|
enabled: true
|