You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helm/blueapi/README.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,7 @@ A Helm chart deploying a worker pod that runs Bluesky plans
33
33
| podLabels | object |`{}`||
34
34
| podSecurityContext | object |`{}`||
35
35
| readinessProbe | object |`{"failureThreshold":2,"httpGet":{"path":"/healthz","port":"http"},"periodSeconds":10}`| Readiness probe, if configured kubernetes will not route traffic to this pod if failed consecutively. This could allow the service time to recover if it is being overwhelmed by traffic, but without the to ability to load balance or scale up/outwards, upstream services will need to know to back off. This is automatically disabled when in debug mode. |
36
-
| resources.limits.cpu | string |`"2000m"`||
37
-
| resources.limits.memory | string |`"4000Mi"`||
38
-
| resources.requests.cpu | string |`"200m"`||
39
-
| resources.requests.memory | string |`"400Mi"`||
36
+
| resources | object |`{"limits":{"cpu":"2000m","memory":"4000Mi"},"requests":{"cpu":"200m","memory":"400Mi"}}`| Sets the compute resources available to the pod. These defaults are appropriate when using debug mode or an internal PVC and therefore running VS Code server in the pod. In the Diamond cluster, requests must be >= 0.1*limits When not using either of the above, the limits may be lowered. When idle but connected, blueapi consumes ~400MB of memory and 1% cpu and may struggle when allocated less. |
40
37
| restartOnConfigChange | bool |`true`| If enabled the blueapi pod will restart on changes to `worker`|
Copy file name to clipboardExpand all lines: helm/blueapi/values.schema.json
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -198,6 +198,7 @@
198
198
}
199
199
},
200
200
"resources": {
201
+
"description": "Sets the compute resources available to the pod. These defaults are appropriate when using debug mode or an internal PVC and therefore running VS Code server in the pod. In the Diamond cluster, requests must be \u003e= 0.1*limits When not using either of the above, the limits may be lowered. When idle but connected, blueapi consumes ~400MB of memory and 1% cpu and may struggle when allocated less.",
Copy file name to clipboardExpand all lines: helm/blueapi/values.yaml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ securityContext:
47
47
# drop:
48
48
# - ALL
49
49
50
-
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
50
+
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
51
51
service:
52
52
# This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
53
53
# -- To make blueapi available on an IP outside of the cluster prior to an Ingress being created, change this to LoadBalancer
@@ -75,13 +75,13 @@ ingress:
75
75
# hosts:
76
76
# - chart-example.local
77
77
78
-
# -- Sets the compute resources available to the pod.
79
-
# These defaults are appropriate when using debug mode or an internal PVC and therefore
80
-
# running VS Code server in the pod.
81
-
# In the Diamond cluster, requests must be >= 0.1*limits
82
-
# When not using either of the above, the limits may be lowered.
83
-
# When idle but connected, blueapi consumes ~400MB of memory and 1% cpu
84
-
# and may struggle when allocated less.
78
+
# -- Sets the compute resources available to the pod.
79
+
# These defaults are appropriate when using debug mode or an internal PVC and therefore
80
+
# running VS Code server in the pod.
81
+
# In the Diamond cluster, requests must be >= 0.1*limits
82
+
# When not using either of the above, the limits may be lowered.
83
+
# When idle but connected, blueapi consumes ~400MB of memory and 1% cpu
84
+
# and may struggle when allocated less.
85
85
resources:
86
86
# We usually recommend not to specify default resources and to leave this as a conscious
87
87
# choice for the user. This also increases chances charts run on environments with little
0 commit comments