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/blueapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A Helm chart deploying a worker pod that runs Bluesky plans
| debug.enabled | bool | `false` | If enabled, disables liveness and readiness probes, and does not start the service on startup This allows connecting to the pod and starting the service manually to allow debugging on the cluster |
| extraEnvVars | list | `[]` | Additional envVars to mount to the pod |
| fullnameOverride | string | `""` | |
| global | object | `{}` | Not used, but must be present for validation when using as a dependency of another chart |
| hostNetwork | bool | `false` | May be needed for EPICS depending on gateway configuration |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/diamondlightsource/blueapi"` | To use a container image that extends the blueapi one, set it here |
Expand Down
4 changes: 4 additions & 0 deletions helm/blueapi/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"fullnameOverride": {
"type": "string"
},
"global": {
"description": "Not used, but must be present for validation when using as a dependency of another chart",
"type": "object"
},
"hostNetwork": {
"description": "May be needed for EPICS depending on gateway configuration",
"type": "boolean"
Expand Down
3 changes: 3 additions & 0 deletions helm/blueapi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,6 @@ debug:
# -- If enabled, disables liveness and readiness probes, and does not start the service on startup
# This allows connecting to the pod and starting the service manually to allow debugging on the cluster
enabled: false

# -- Not used, but must be present for validation when using as a dependency of another chart
global: {}