Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-31 09:31:20 +00:00
parent 5e2f4bb295
commit 0699fe4977
29 changed files with 2376 additions and 27 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [flowise-0.0.4](https://github.com/truecharts/charts/compare/flowise-0.0.3...flowise-0.0.4) (2023-07-31)

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "1.3.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 13.2.2
deprecated: false
description: Drag & drop UI to build your customized LLM flow.
home: https://truecharts.org/charts/incubator/flowise
icon: https://truecharts.org/img/hotlink-ok/chart-icons/flowise.png
keywords:
- flowise
- ai
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: flowise
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/flowise
- https://github.com/FlowiseAI/Flowise
type: application
version: 0.0.4
annotations:
truecharts.org/catagories: |
- ai
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,4 @@
## [flowise-0.0.4](https://github.com/truecharts/charts/compare/flowise-0.0.3...flowise-0.0.4) (2023-07-31)

View File

@ -0,0 +1,8 @@
Drag & drop UI to build your customized LLM flow.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/flowise](https://truecharts.org/charts/stable/flowise)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,86 @@
image:
repository: tccr.io/truecharts/flowise
pullPolicy: IfNotPresent
tag: v1.3.1@sha256:8a2879b3c0ebb93061f6c74337e7694489c7ba571664dc071c301bed7062a305
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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
{{/* Define the secrets */}}
{{- define "flowise.secrets" -}}
{{- $secretName := (printf "%s-flowise-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
{{- $flowiseprevious := lookup "v1" "Secret" .Release.Namespace $secretName }}
enabled: true
data:
{{- if $flowiseprevious }}
PASSPHRASE: {{ index $flowiseprevious.data "PASSPHRASE" | b64dec }}
{{- else }}
{{- $pass_key := randAlphaNum 32 }}
PASSPHRASE: {{ $pass_key }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secrets for flowise */}}
{{- $secrets := include "flowise.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "flowise-secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

5
stable/flowise/item.yaml Normal file
View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/flowise.png
categories:
- ai
screenshots: []

View File

@ -1,10 +0,0 @@
## [paperless-ngx-1.1.1](https://github.com/truecharts/charts/compare/paperless-ngx-1.1.0...paperless-ngx-1.1.1) (2023-07-30)
### Docs
- Fix how-to + remove outdated ([#11047](https://github.com/truecharts/charts/issues/11047))
- fix how to docs ([#11046](https://github.com/truecharts/charts/issues/11046))

View File

@ -4,6 +4,15 @@
## [paperless-ngx-1.1.2](https://github.com/truecharts/charts/compare/paperless-ngx-1.1.1...paperless-ngx-1.1.2) (2023-07-31)
### Fix
- Set defaults for OCR_LANGUAGES ([#11072](https://github.com/truecharts/charts/issues/11072))
## [paperless-ngx-1.1.1](https://github.com/truecharts/charts/compare/paperless-ngx-1.1.0...paperless-ngx-1.1.1) (2023-07-30)
### Docs
@ -88,12 +97,3 @@
## [paperless-ngx-1.0.25](https://github.com/truecharts/charts/compare/paperless-ngx-1.0.24...paperless-ngx-1.0.25) (2023-06-07)
### Chore
- update helm general non-major ([#9459](https://github.com/truecharts/charts/issues/9459))
## [paperless-ngx-1.0.24](https://github.com/truecharts/charts/compare/paperless-ngx-1.0.23...paperless-ngx-1.0.24) (2023-06-07)

View File

@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: paperless-ngx
version: 1.1.1
version: 1.1.2
appVersion: "1.16.5"
description: Paperless-ngx is an application by Daniel Quinn and contributors that indexes your scanned documents.
type: application
@ -20,11 +20,11 @@ sources:
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.15.0
version: 13.2.2
- condition: redis.enabled
name: redis
repository: https://deps.truecharts.org
version: 6.0.66
version: 7.0.6
maintainers:
- email: info@truecharts.org
name: TrueCharts

View File

@ -0,0 +1,9 @@
## [paperless-ngx-1.1.2](https://github.com/truecharts/charts/compare/paperless-ngx-1.1.1...paperless-ngx-1.1.2) (2023-07-31)
### Fix
- Set defaults for OCR_LANGUAGES ([#11072](https://github.com/truecharts/charts/issues/11072))

Binary file not shown.

Binary file not shown.

View File

@ -95,5 +95,5 @@ workload:
PAPERLESS_ADMIN_USER: "admin"
PAPERLESS_ADMIN_PASSWORD: "admin"
PAPERLESS_ADMIN_MAIL: "admin@admin.com"
PAPERLESS_OCR_LANGUAGE: ""
PAPERLESS_OCR_LANGUAGES: ""
PAPERLESS_OCR_LANGUAGE: "eng"
PAPERLESS_OCR_LANGUAGES: "eng fra deu spa ita"

View File

@ -144,13 +144,13 @@ questions:
description: "Additional OCR languages to install. By default, paperless comes with English, German, Italian, Spanish and French. If your language is not in this list, install additional languages with this configuration option. Use LangCodes for the additional languages in a SPACED list."
schema:
type: string
default: ""
default: "eng fra deu spa ita"
- variable: PAPERLESS_OCR_LANGUAGE
label: "Additional Language Selector"
description: "If additional languages are selected above, you can set the default language used with OCR using LangCodes below, default is none"
description: "If additional languages are selected above, you can set the default language used with OCR using LangCodes below, default is eng. Can use eng+fra if muliple"
schema:
type: string
default: ""
default: "eng"
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File