Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(flowise): update docker.io/flowiseai/flowise docker tag to v1.6.0 #550

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/flowise/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 1.3.4
appVersion: 1.6.0
description: Drag & drop UI to build your customized LLM flow
home: https://flowiseai.com/
icon: https://avatars.githubusercontent.com/u/128289781
Expand All @@ -10,7 +10,7 @@ name: flowise
sources:
- https://github.com/FlowiseAI/Flowise
- https://github.com/cowboysysop/charts/tree/master/charts/flowise
version: 2.5.0
version: 2.6.0
dependencies:
- name: common
version: 2.9.0
Expand Down
18 changes: 9 additions & 9 deletions charts/flowise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The command deletes the release named `my-release` and frees all the kubernetes
| `updateStrategy.type` | Update strategy type (do not change it) | `Recreate` |
| `image.registry` | Image registry | `docker.io` |
| `image.repository` | Image repository | `flowiseai/flowise` |
| `image.tag` | Image tag | `1.3.4` |
| `image.tag` | Image tag | `1.6.0` |
| `image.digest` | Image digest | `""` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
Expand All @@ -102,6 +102,8 @@ The command deletes the release named `my-release` and frees all the kubernetes
| `podLabels` | Additional pod labels | `{}` |
| `podSecurityContext` | Pod security context | `{}` |
| `priorityClassName` | Priority class name | `nil` |
| `runtimeClassName` | Runtime class name | `""` |
| `topologySpreadConstraints` | Topology Spread Constraints for pod assignment | `[]` |
| `securityContext` | Container security context | `{}` |
| `containerPorts.http` | Container port for HTTP | `3000` |
| `livenessProbe.enabled` | Enable liveness probe | `true` |
Expand Down Expand Up @@ -154,14 +156,12 @@ The command deletes the release named `my-release` and frees all the kubernetes

### Config parameters

| Name | Description | Default |
| ----------------------------- | ----------------------------------------------- | -------------- |
| `config.username` | Username to login | `""` |
| `config.password` | Password to login | `""` |
| `config.passphrase` | Passphrase used to create encryption key | `MYPASSPHRASE` |
| `existingSecret` | Name of existing Secret to use | `""` |
| `existingSecretKeyPassword` | Key in existing Secret that contains password | `password` |
| `existingSecretKeyPassphrase` | Key in existing Secret that contains passphrase | `passphrase` |
| Name | Description | Default |
| --------------------------- | --------------------------------------------- | ---------- |
| `config.username` | Username to login | `""` |
| `config.password` | Password to login | `""` |
| `existingSecret` | Name of existing Secret to use | `""` |
| `existingSecretKeyPassword` | Key in existing Secret that contains password | `password` |

### MariaDB parameters

Expand Down
11 changes: 0 additions & 11 deletions charts/flowise/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,6 @@ Key in Secret that contains password
{{- end -}}
{{- end -}}

{{/*
Key in Secret that contains passphrase
*/}}
{{- define "flowise.secretKeyPassphrase" -}}
{{- if .Values.existingSecret -}}
{{ .Values.existingSecretKeyPassphrase }}
{{- else -}}
passphrase
{{- end -}}
{{- end -}}

{{/*
MariaDB fully qualified app name
*/}}
Expand Down
15 changes: 10 additions & 5 deletions charts/flowise/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ spec:
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
{{- end }}
{{- if .Values.runtimeClassName }}
runtimeClassName: {{ .Values.runtimeClassName | quote }}
{{- end }}
serviceAccountName: {{ include "flowise.serviceAccountName" . }}
{{- if .Values.topologySpreadConstraints }}
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.topologySpreadConstraints "context" .) | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
initContainers:
Expand Down Expand Up @@ -135,13 +141,10 @@ spec:
{{- end }}
- name: APIKEY_PATH
value: /data
- name: BLOB_STORAGE_PATH
value: /data/storage
- name: SECRETKEY_PATH
value: /data
- name: PASSPHRASE
valueFrom:
secretKeyRef:
name: {{ include "flowise.secretName" . }}
key: {{ include "flowise.secretKeyPassphrase" . }}
- name: DATABASE_PATH
value: /data
{{- if or .Values.mariadb.enabled .Values.externalMariadb.enabled }}
Expand Down Expand Up @@ -178,6 +181,8 @@ spec:
- name: DATABASE_NAME
value: {{ include "flowise.postgresql.database" . | quote }}
{{- end }}
- name: DISABLE_FLOWISE_TELEMETRY
value: "true"
{{- if .Values.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
Expand Down
1 change: 0 additions & 1 deletion charts/flowise/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ data:
{{- if and .Values.config.username .Values.config.password }}
password: {{ .Values.config.password | b64enc | quote }}
{{- end }}
passphrase: {{ .Values.config.passphrase | b64enc | quote }}
{{- end }}
14 changes: 7 additions & 7 deletions charts/flowise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ image:
repository: flowiseai/flowise

## @param image.tag Image tag
tag: 1.3.4
tag: 1.6.0

## @param image.digest Image digest
digest: ""
Expand Down Expand Up @@ -91,6 +91,12 @@ podSecurityContext: {}
priorityClassName:
# priorityClassName : high-priority

## @param runtimeClassName Runtime class name
runtimeClassName: ""

## @param topologySpreadConstraints Topology Spread Constraints for pod assignment
topologySpreadConstraints: []

## @param securityContext Container security context
securityContext: {}
# capabilities:
Expand Down Expand Up @@ -283,18 +289,12 @@ config:
## @param config.password Password to login
password: ""

## @param config.passphrase Passphrase used to create encryption key
passphrase: MYPASSPHRASE

## @param existingSecret Name of existing Secret to use
existingSecret: ""

## @param existingSecretKeyPassword Key in existing Secret that contains password
existingSecretKeyPassword: password

## @param existingSecretKeyPassphrase Key in existing Secret that contains passphrase
existingSecretKeyPassphrase: passphrase

## @section MariaDB parameters

mariadb:
Expand Down
Loading