diff --git a/charts/flowise/Chart.yaml b/charts/flowise/Chart.yaml index 77b8207c..50d478de 100644 --- a/charts/flowise/Chart.yaml +++ b/charts/flowise/Chart.yaml @@ -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 @@ -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 diff --git a/charts/flowise/README.md b/charts/flowise/README.md index 4cc313b8..cc282650 100644 --- a/charts/flowise/README.md +++ b/charts/flowise/README.md @@ -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` | @@ -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 | `{}` | diff --git a/charts/flowise/templates/deployment.yaml b/charts/flowise/templates/deployment.yaml index 41297744..b5669938 100644 --- a/charts/flowise/templates/deployment.yaml +++ b/charts/flowise/templates/deployment.yaml @@ -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 }} diff --git a/charts/flowise/values.yaml b/charts/flowise/values.yaml index e36e92c3..16b827de 100644 --- a/charts/flowise/values.yaml +++ b/charts/flowise/values.yaml @@ -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: "" @@ -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: {}