Skip to content
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
1 change: 1 addition & 0 deletions helm/flowfuse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ For other values please refer to the documentation below.
- `forge.projectServiceType` service type for project instances (allowed `ClusterIP` or `NodePort`, default is `ClusterIP`)
- `forge.projectPodSecurityContext` allows to configure [securityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) for the project pods
- `forge.projectContainerSecurityContext` allows to configure [securityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) for the project container
- `forge.projectSchedulerName` allows to set a custom [scheduler](https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/) for the project pods (default not set)
- `forge.projectLabels` allows to add custom labels to all project-related resources (default `{}`)
- `forge.projectProbes` allows to configure [liveness, readiness and startup probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) for the project pods (default not set, which means no custom probes configured)
- `forge.projectProbes.livenessProbe` block with [livenessProbe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) configuration for the project pods
Expand Down
3 changes: 3 additions & 0 deletions helm/flowfuse/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ data:
containerSecurityContext:
{{ toYaml .Values.forge.projectContainerSecurityContext | indent 10 }}
{{- end }}
{{- if .Values.forge.projectSchedulerName }}
schedulerName: {{ .Values.forge.projectSchedulerName }}
{{- end }}
{{- if .Values.forge.email }}
email:
enabled: true
Expand Down
3 changes: 3 additions & 0 deletions helm/flowfuse/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@
"projectContainerSecurityContext": {
"type": "object"
},
"projectSchedulerName": {
"type": "string"
},
"managementSelector": {
"type": "object"
},
Expand Down
Loading