Add chart flowise/6.0.0
This commit is contained in:
+302
-33
@@ -22,6 +22,9 @@ nameOverride: ""
|
||||
## @param fullnameOverride Fully override `flowise.fullname` template with a string
|
||||
fullnameOverride: ""
|
||||
|
||||
## @param namespaceOverride Fully override `common.names.namespace` template with a string
|
||||
namespaceOverride: ""
|
||||
|
||||
## @param commonAnnotations Annotations to add to all deployed objects
|
||||
commonAnnotations: {}
|
||||
|
||||
@@ -36,6 +39,9 @@ extraDeploy: []
|
||||
## @param replicaCount Number of replicas (do not change it)
|
||||
replicaCount: 1
|
||||
|
||||
## @param revisionHistoryLimit Number of old history to retain to allow rollback
|
||||
revisionHistoryLimit: 10
|
||||
|
||||
updateStrategy:
|
||||
## @param updateStrategy.type Update strategy type (do not change it)
|
||||
type: Recreate
|
||||
@@ -48,7 +54,7 @@ image:
|
||||
repository: flowiseai/flowise
|
||||
|
||||
## @param image.tag Image tag
|
||||
tag: 2.2.3
|
||||
tag: 3.0.3
|
||||
|
||||
## @param image.digest Image digest
|
||||
digest: ""
|
||||
@@ -77,6 +83,9 @@ serviceAccount:
|
||||
## @param serviceAccount.name The name of the service account to use (Generated using the `flowise.fullname` template if not set)
|
||||
name:
|
||||
|
||||
## @param enableServiceLinks Whether information about services should be injected into pod's environment variable
|
||||
enableServiceLinks: false
|
||||
|
||||
## @param hostAliases Pod host aliases
|
||||
hostAliases: []
|
||||
|
||||
@@ -89,9 +98,11 @@ podAnnotations: {}
|
||||
## @param podLabels Additional pod labels
|
||||
podLabels: {}
|
||||
|
||||
## @param podSecurityContext Pod security context
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
## @extra podSecurityContext Pod security context
|
||||
## @param podSecurityContext.seccompProfile.type Set pod's Security Context seccomp profile
|
||||
podSecurityContext:
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
|
||||
## @param priorityClassName Priority class name
|
||||
priorityClassName:
|
||||
@@ -103,14 +114,21 @@ runtimeClassName: ""
|
||||
## @param topologySpreadConstraints Topology Spread Constraints for pod assignment
|
||||
topologySpreadConstraints: []
|
||||
|
||||
## @param securityContext Container security context
|
||||
securityContext: {}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
# readOnlyRootFilesystem: true
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
## @extra securityContext Container security context
|
||||
## @param securityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
|
||||
## @param securityContext.capabilities.drop List of capabilities to be dropped
|
||||
## @param securityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
|
||||
## @param securityContext.runAsNonRoot Whether the container must run as a non-root user
|
||||
## @param securityContext.runAsUser The UID to run the entrypoint of the container process
|
||||
## @param securityContext.runAsGroup The GID to run the entrypoint of the container process
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: true
|
||||
capabilities:
|
||||
drop: []
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
containerPorts:
|
||||
## @param containerPorts.http Container port for HTTP
|
||||
@@ -184,6 +202,12 @@ service:
|
||||
clusterIP:
|
||||
# clusterIP: 10.43.0.100
|
||||
|
||||
## @param service.ipFamilyPolicy Service IP family policy
|
||||
ipFamilyPolicy: ""
|
||||
|
||||
## @param service.ipFamilies Service IP families
|
||||
ipFamilies: []
|
||||
|
||||
## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin
|
||||
sessionAffinity: None
|
||||
|
||||
@@ -240,10 +264,10 @@ ingress:
|
||||
|
||||
## @param resources CPU/Memory resource requests/limits
|
||||
resources: {}
|
||||
# limits:
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
@@ -301,17 +325,213 @@ persistence:
|
||||
## @section Config parameters
|
||||
|
||||
config:
|
||||
## @param config.username Username to login
|
||||
username: ""
|
||||
## @param config.mode Mode to run Flowise
|
||||
mode: main
|
||||
|
||||
## @param config.password Password to login
|
||||
password: ""
|
||||
## @param config.encryptionKey Encryption key
|
||||
encryptionKey: ""
|
||||
|
||||
## @param existingSecret Name of existing Secret to use
|
||||
existingSecret: ""
|
||||
|
||||
## @param existingSecretKeyPassword Key in existing Secret that contains password
|
||||
existingSecretKeyPassword: password
|
||||
## @param existingSecretKeyEncryptionKey Key in existing Secret that contains encryption key
|
||||
existingSecretKeyEncryptionKey: encryption-key
|
||||
|
||||
## @section Worker parameters
|
||||
|
||||
worker:
|
||||
## @param worker.enabled Enable the component
|
||||
enabled: false
|
||||
|
||||
## @param worker.replicaCount Number of replicas
|
||||
replicaCount: 1
|
||||
|
||||
## @param worker.revisionHistoryLimit Number of old history to retain to allow rollback
|
||||
revisionHistoryLimit: 10
|
||||
|
||||
image:
|
||||
## @param worker.image.registry Image registry
|
||||
registry: docker.io
|
||||
|
||||
## @param worker.image.repository Image repository
|
||||
repository: flowiseai/flowise-worker
|
||||
|
||||
## @param worker.image.tag Image tag
|
||||
tag: 3.0.3
|
||||
|
||||
## @param worker.image.digest Image digest
|
||||
digest: ""
|
||||
|
||||
## @param worker.image.pullPolicy Image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
pdb:
|
||||
## @param worker.pdb.create Specifies whether a pod disruption budget should be created
|
||||
create: false
|
||||
|
||||
## @param worker.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
|
||||
minAvailable: 1
|
||||
|
||||
## @param worker.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
|
||||
maxUnavailable:
|
||||
# maxUnavailable: 1
|
||||
|
||||
serviceAccount:
|
||||
## @param worker.serviceAccount.create Specifies whether a service account should be created
|
||||
create: true
|
||||
|
||||
## @param worker.serviceAccount.annotations Service account annotations
|
||||
annotations: {}
|
||||
|
||||
## @param worker.serviceAccount.name The name of the service account to use (Generated using the `flowise.fullname` template if not set)
|
||||
name:
|
||||
|
||||
## @param worker.enableServiceLinks Whether information about services should be injected into pod's environment variable
|
||||
enableServiceLinks: false
|
||||
|
||||
## @param worker.hostAliases Pod host aliases
|
||||
hostAliases: []
|
||||
|
||||
## @param worker.deploymentAnnotations Additional deployment annotations
|
||||
deploymentAnnotations: {}
|
||||
|
||||
## @param worker.podAnnotations Additional pod annotations
|
||||
podAnnotations: {}
|
||||
|
||||
## @param worker.podLabels Additional pod labels
|
||||
podLabels: {}
|
||||
|
||||
## @extra worker.podSecurityContext Pod security context
|
||||
## @param worker.podSecurityContext.seccompProfile.type Set pod's Security Context seccomp profile
|
||||
podSecurityContext:
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
|
||||
## @param worker.priorityClassName Priority class name
|
||||
priorityClassName:
|
||||
# priorityClassName : high-priority
|
||||
|
||||
## @param worker.runtimeClassName Runtime class name
|
||||
runtimeClassName: ""
|
||||
|
||||
## @param worker.topologySpreadConstraints Topology Spread Constraints for pod assignment
|
||||
topologySpreadConstraints: []
|
||||
|
||||
## @extra worker.securityContext Container security context
|
||||
## @param worker.securityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
|
||||
## @param worker.securityContext.capabilities.drop List of capabilities to be dropped
|
||||
## @param worker.securityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
|
||||
## @param worker.securityContext.runAsNonRoot Whether the container must run as a non-root user
|
||||
## @param worker.securityContext.runAsUser The UID to run the entrypoint of the container process
|
||||
## @param worker.securityContext.runAsGroup The GID to run the entrypoint of the container process
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: true
|
||||
capabilities:
|
||||
drop: []
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
containerPorts:
|
||||
## @param worker.containerPorts.probes Container port for Probes
|
||||
probes: 5566
|
||||
|
||||
livenessProbe:
|
||||
## @param worker.livenessProbe.enabled Enable liveness probe
|
||||
enabled: true
|
||||
|
||||
## @param worker.livenessProbe.initialDelaySeconds Delay before the liveness probe is initiated
|
||||
initialDelaySeconds: 0
|
||||
|
||||
## @param worker.livenessProbe.periodSeconds How often to perform the liveness probe
|
||||
periodSeconds: 10
|
||||
|
||||
## @param worker.livenessProbe.timeoutSeconds When the liveness probe times out
|
||||
timeoutSeconds: 1
|
||||
|
||||
## @param worker.livenessProbe.failureThreshold Minimum consecutive failures for the liveness probe to be considered failed after having succeeded
|
||||
failureThreshold: 3
|
||||
|
||||
## @param worker.livenessProbe.successThreshold Minimum consecutive successes for the liveness probe to be considered successful after having failed
|
||||
successThreshold: 1
|
||||
|
||||
readinessProbe:
|
||||
## @param worker.readinessProbe.enabled Enable readiness probe
|
||||
enabled: true
|
||||
|
||||
## @param worker.readinessProbe.initialDelaySeconds Delay before the readiness probe is initiated
|
||||
initialDelaySeconds: 0
|
||||
|
||||
## @param worker.readinessProbe.periodSeconds How often to perform the readiness probe
|
||||
periodSeconds: 10
|
||||
|
||||
## @param worker.readinessProbe.timeoutSeconds When the readiness probe times out
|
||||
timeoutSeconds: 1
|
||||
|
||||
## @param worker.readinessProbe.failureThreshold Minimum consecutive failures for the readiness probe to be considered failed after having succeeded
|
||||
failureThreshold: 3
|
||||
|
||||
## @param worker.readinessProbe.successThreshold Minimum consecutive successes for the readiness probe to be considered successful after having failed
|
||||
successThreshold: 1
|
||||
|
||||
startupProbe:
|
||||
## @param worker.startupProbe.enabled Enable startup probe
|
||||
enabled: false
|
||||
|
||||
## @param worker.startupProbe.initialDelaySeconds Delay before the startup probe is initiated
|
||||
initialDelaySeconds: 0
|
||||
|
||||
## @param worker.startupProbe.periodSeconds How often to perform the startup probe
|
||||
periodSeconds: 10
|
||||
|
||||
## @param worker.startupProbe.timeoutSeconds When the startup probe times out
|
||||
timeoutSeconds: 1
|
||||
|
||||
## @param worker.startupProbe.failureThreshold Minimum consecutive failures for the startup probe to be considered failed after having succeeded
|
||||
failureThreshold: 3
|
||||
|
||||
## @param worker.startupProbe.successThreshold Minimum consecutive successes for the startup probe to be considered successful after having failed
|
||||
successThreshold: 1
|
||||
|
||||
## @param worker.resources CPU/Memory resource requests/limits
|
||||
resources: {}
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
## @param worker.nodeSelector Node labels for pod assignment
|
||||
nodeSelector: {}
|
||||
|
||||
## @param worker.tolerations Tolerations for pod assignment
|
||||
tolerations: []
|
||||
|
||||
## @param worker.affinity Map of node/pod affinities
|
||||
affinity: {}
|
||||
|
||||
## @param worker.extraArgs Additional container arguments
|
||||
extraArgs: {}
|
||||
# name: ""
|
||||
|
||||
## @param worker.extraEnvVars Additional container environment variables
|
||||
extraEnvVars: []
|
||||
# - name: MY-NAME
|
||||
# value: "MY-VALUE"
|
||||
|
||||
## @param worker.extraEnvVarsCM Name of existing ConfigMap containing additional container environment variables
|
||||
extraEnvVarsCM:
|
||||
|
||||
## @param worker.extraEnvVarsSecret Name of existing Secret containing additional container environment variables
|
||||
extraEnvVarsSecret:
|
||||
|
||||
## @param worker.extraVolumes Optionally specify extra list of additional volumes
|
||||
extraVolumes: []
|
||||
|
||||
## @param worker.extraVolumeMounts Optionally specify extra list of additional volumeMounts
|
||||
extraVolumeMounts: []
|
||||
|
||||
## @section MariaDB parameters
|
||||
|
||||
@@ -419,6 +639,47 @@ externalPostgresql:
|
||||
## @param externalPostgresql.database External PostgreSQL database
|
||||
database: flowise
|
||||
|
||||
## @section Redis parameters
|
||||
|
||||
redis:
|
||||
## @param redis.enabled Whether to use the Redis chart
|
||||
enabled: false
|
||||
|
||||
## @param redis.architecture Redis architecture
|
||||
architecture: standalone
|
||||
|
||||
auth:
|
||||
## @param redis.auth.password Redis password
|
||||
password: flowise
|
||||
|
||||
## @param redis.auth.existingSecret Name of existing Secret to use
|
||||
existingSecret: ""
|
||||
|
||||
master:
|
||||
service:
|
||||
ports:
|
||||
## @param redis.master.service.ports.redis Redis port
|
||||
redis: 6379
|
||||
|
||||
externalRedis:
|
||||
## @param externalRedis.enabled Whether to use an external Redis
|
||||
enabled: false
|
||||
|
||||
## @param externalRedis.host External Redis host
|
||||
host: redis
|
||||
|
||||
## @param externalRedis.port External Redis port
|
||||
port: 6379
|
||||
|
||||
## @param externalRedis.password External Redis password
|
||||
password: flowise
|
||||
|
||||
## @param externalRedis.existingSecret Name of existing Secret to use
|
||||
existingSecret: ""
|
||||
|
||||
## @param externalRedis.existingSecretKeyPassword Key in existing Secret that contains Redis password
|
||||
existingSecretKeyPassword: redis-password
|
||||
|
||||
## @section Wait parameters
|
||||
|
||||
wait:
|
||||
@@ -427,10 +688,10 @@ wait:
|
||||
registry: docker.io
|
||||
|
||||
## @param wait.image.repository Image repository
|
||||
repository: atkrad/wait4x
|
||||
repository: wait4x/wait4x
|
||||
|
||||
## @param wait.image.tag Image tag
|
||||
tag: 2.14.1
|
||||
tag: 3.3.1
|
||||
|
||||
## @param wait.image.digest Image digest
|
||||
digest: ""
|
||||
@@ -438,21 +699,29 @@ wait:
|
||||
## @param wait.image.pullPolicy Image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
## @param wait.securityContext Container security context
|
||||
securityContext: {}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
# readOnlyRootFilesystem: true
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
## @extra wait.securityContext Container security context
|
||||
## @param wait.securityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
|
||||
## @param wait.securityContext.capabilities.drop List of capabilities to be dropped
|
||||
## @param wait.securityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
|
||||
## @param wait.securityContext.runAsNonRoot Whether the container must run as a non-root user
|
||||
## @param wait.securityContext.runAsUser The UID to run the entrypoint of the container process
|
||||
## @param wait.securityContext.runAsGroup The GID to run the entrypoint of the container process
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
runAsUser: 65534
|
||||
runAsGroup: 65534
|
||||
|
||||
## @param wait.resources CPU/Memory resource requests/limits
|
||||
resources: {}
|
||||
# limits:
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
@@ -470,7 +739,7 @@ tests:
|
||||
repository: cowboysysop/pytest
|
||||
|
||||
## @param tests.image.tag Image tag
|
||||
tag: 1.0.41
|
||||
tag: 1.2.0
|
||||
|
||||
## @param tests.image.digest Image digest
|
||||
digest: ""
|
||||
|
||||
Reference in New Issue
Block a user