Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-07-26 10:36:15 +00:00
parent a7529021d0
commit 902f614624
29 changed files with 2350 additions and 24 deletions

View File

@@ -1,13 +0,0 @@
## [clusterissuer-3.0.0](https://github.com/truecharts/charts/compare/clusterissuer-2.0.1...clusterissuer-3.0.0) (2023-07-25)
### Chore
- update helm general major (major) ([#10722](https://github.com/truecharts/charts/issues/10722))
### Docs
- add cert-manager ([#10681](https://github.com/truecharts/charts/issues/10681))

View File

@@ -4,6 +4,15 @@
## [clusterissuer-3.0.1](https://github.com/truecharts/charts/compare/clusterissuer-3.0.0...clusterissuer-3.0.1) (2023-07-26)
### Fix
- fix `issuerRef` for self-signed CAs ([#10847](https://github.com/truecharts/charts/issues/10847))
## [clusterissuer-3.0.0](https://github.com/truecharts/charts/compare/clusterissuer-2.0.1...clusterissuer-3.0.0) (2023-07-25)
### Chore
@@ -88,12 +97,3 @@
### Chore
- update container image tccr.io/truecharts/scratch to latest ([#9868](https://github.com/truecharts/charts/issues/9868))
## [clusterissuer-1.0.7](https://github.com/truecharts/charts/compare/clusterissuer-1.0.6...clusterissuer-1.0.7) (2023-06-17)
### Chore

View File

@@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/enterprise/clusterissuer
- https://cert-manager.io/
type: application
version: 3.0.0
version: 3.0.1
annotations:
truecharts.org/catagories: |
- core

View File

@@ -0,0 +1,9 @@
## [clusterissuer-3.0.1](https://github.com/truecharts/charts/compare/clusterissuer-3.0.0...clusterissuer-3.0.1) (2023-07-26)
### Fix
- fix `issuerRef` for self-signed CAs ([#10847](https://github.com/truecharts/charts/issues/10847))

View File

@@ -28,7 +28,7 @@ spec:
algorithm: ECDSA
size: 256
issuerRef:
name: selfsigned-ca-issuer
name: {{ .name }}-selfsigned-ca-issuer
kind: ClusterIssuer
group: cert-manager.io
{{- else }}

View File

@@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [flowise-0.0.1]flowise-0.0.1 (2023-07-26)

View File

@@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "1.2.16"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.14.6
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.1
annotations:
truecharts.org/catagories: |
- ai
truecharts.org/SCALE-support: "true"

View File

@@ -0,0 +1 @@
# README

View File

@@ -0,0 +1,4 @@
## [flowise-0.0.1]flowise-0.0.1 (2023-07-26)

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/incubator/flowise](https://truecharts.org/charts/incubator/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.2.16@sha256:dd26066890e74e49f4e3976f918394ddc0f84430c59f9abe5315fb8147382440
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 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

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" . }}

View File

View File

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