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: charts/agent-stack-k8s/values.schema.json
+13-1
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@
174
174
"image": {
175
175
"type": "string",
176
176
"default": "",
177
-
"title": "The image Schema",
177
+
"title": "The container image used to obtain buildkite-agent, and for running commands without any k8s-specific configuration. The default for each release of agent-stack-k8s is set to a version tag of gchr.io/buildkite/agent matching agent-stack-k8s's go.mod file",
178
178
"examples": [""]
179
179
},
180
180
"debug": {
@@ -232,6 +232,18 @@
232
232
},
233
233
"examples": [["SECRET_RECIPE"]]
234
234
},
235
+
"image-pull-backoff-grace-period": {
236
+
"type": "string",
237
+
"default": "30s",
238
+
"title": "Duration after starting a pod that the controller will wait before considering cancelling a job due to ImagePullBackOff (e.g. when the podSpec specifies container images that cannot be pulled). Must be a Go duration string",
239
+
"examples": ["60s"]
240
+
},
241
+
"job-cancel-checker-poll-interval": {
242
+
"type": "string",
243
+
"default": "5s",
244
+
"title": "Controls the interval between job state queries while a pod is still Pending. Must be a Go duration string",
"Duration after starting a pod that the controller will wait before considering cancelling a job due to ImagePullBackOff (e.g. when the podSpec specifies container images that cannot be pulled)",
92
92
)
93
+
cmd.Flags().Duration(
94
+
"job-cancel-checker-poll-interval",
95
+
config.DefaultJobCancelCheckerPollInterval,
96
+
"Controls the interval between job state queries while a pod is still Pending",
0 commit comments