Skip to content

Commit

Permalink
feat(flowise): update docker.io/flowiseai/flowise docker tag to v1.8.2 (
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastien-prudhomme authored Jun 18, 2024
1 parent 08e673d commit 289a95e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
10 changes: 5 additions & 5 deletions charts/flowise/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 1.8.1
appVersion: 1.8.2
description: Drag & drop UI to build your customized LLM flow
home: https://flowiseai.com/
icon: https://avatars.githubusercontent.com/u/128289781
Expand All @@ -10,17 +10,17 @@ name: flowise
sources:
- https://github.com/FlowiseAI/Flowise
- https://github.com/cowboysysop/charts/tree/master/charts/flowise
version: 3.4.0
version: 3.5.0
dependencies:
- name: common
version: 2.19.1
version: 2.20.3
repository: https://charts.bitnami.com/bitnami/
- name: mariadb
version: 18.0.1
version: 18.2.4
repository: https://charts.bitnami.com/bitnami/
condition: mariadb.enabled
- name: postgresql
version: 15.2.5
version: 15.5.7
repository: https://charts.bitnami.com/bitnami/
condition: postgresql.enabled
annotations:
Expand Down
2 changes: 1 addition & 1 deletion charts/flowise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,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.8.1` |
| `image.tag` | Image tag | `1.8.2` |
| `image.digest` | Image digest | `""` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
Expand Down
11 changes: 3 additions & 8 deletions charts/flowise/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,6 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: {{ include "common.images.image" ( dict "imageRoot" .Values.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- /bin/sh
- -ec
- |
flowise start
{{- if .Values.extraArgs }}
args:
{{- range $key, $value := .Values.extraArgs }}
Expand Down Expand Up @@ -204,7 +199,7 @@ spec:
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /
path: /api/v1/ping
port: http
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
Expand All @@ -215,7 +210,7 @@ spec:
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /
path: /api/v1/ping
port: http
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
Expand All @@ -226,7 +221,7 @@ spec:
{{- if .Values.startupProbe.enabled }}
startupProbe:
httpGet:
path: /
path: /api/v1/ping
port: http
initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
Expand Down
2 changes: 1 addition & 1 deletion 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.8.1
tag: 1.8.2

## @param image.digest Image digest
digest: ""
Expand Down

0 comments on commit 289a95e

Please sign in to comment.