Skip to content

Commit

Permalink
feat(flowise): allow pod host aliases and update docker.io/flowiseai/…
Browse files Browse the repository at this point in the history
…flowise docker tag to v2.0.7 (#724)

Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
sebastien-prudhomme and renovate-bot authored Aug 31, 2024
1 parent cfe4b19 commit 4d68ab3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
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: 2.0.2
appVersion: 2.0.7
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: 3.7.2
version: 3.8.0
dependencies:
- name: common
version: 2.21.0
Expand Down
3 changes: 2 additions & 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 | `2.0.2` |
| `image.tag` | Image tag | `2.0.7` |
| `image.digest` | Image digest | `""` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
Expand All @@ -113,6 +113,7 @@ The command deletes the release named `my-release` and frees all the kubernetes
| `serviceAccount.create` | Specifies whether a service account should be created | `true` |
| `serviceAccount.annotations` | Service account annotations | `{}` |
| `serviceAccount.name` | The name of the service account to use (Generated using the `flowise.fullname` template if not set) | `nil` |
| `hostAliases` | Pod host aliases | `[]` |
| `deploymentAnnotations` | Additional deployment annotations | `{}` |
| `podAnnotations` | Additional pod annotations | `{}` |
| `podLabels` | Additional pod labels | `{}` |
Expand Down
3 changes: 3 additions & 0 deletions charts/flowise/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ spec:
{{- end }}
spec:
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.image ) "global" .Values.global ) | nindent 6 }}
{{- if .Values.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
{{- end }}
Expand Down
5 changes: 4 additions & 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: 2.0.5
tag: 2.0.7

## @param image.digest Image digest
digest: ""
Expand Down Expand Up @@ -77,6 +77,9 @@ serviceAccount:
## @param serviceAccount.name The name of the service account to use (Generated using the `flowise.fullname` template if not set)
name:

## @param hostAliases Pod host aliases
hostAliases: []

## @param deploymentAnnotations Additional deployment annotations
deploymentAnnotations: {}

Expand Down

0 comments on commit 4d68ab3

Please sign in to comment.