File tree 2 files changed +7
-18
lines changed
site/src/pages/HealthPage
2 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -375,14 +375,15 @@ telemetry:
375
375
# Tune the behavior of the provisioner, which is responsible for creating,
376
376
# updating, and deleting workspace resources.
377
377
provisioning:
378
- # Number of terraform provisioner daemons to create on start. If builds are stuck
379
- # in queued state for a long time, consider increasing this.
378
+ # Number of provisioner daemons to create on start. If builds are stuck in queued
379
+ # state for a long time, consider increasing this.
380
380
# (default: 3, type: int)
381
381
daemons: 3
382
- # Number of built-in echo provisioners to create on start. Can be done alongside
383
- # actual terraform provisioners. This is for E2E tests.
384
- # (default: 0, type: int)
385
- daemonsEcho: 0
382
+ # The supported job types for the built-in provisioners. By default, this is only
383
+ # the terraform type. Supported types: terraform,echo.
384
+ # (default: terraform, type: string-array)
385
+ daemonTypes:
386
+ - terraform
386
387
# Deprecated and ignored.
387
388
# (default: 1s, type: duration)
388
389
daemonPollInterval: 1s
Original file line number Diff line number Diff line change @@ -116,18 +116,6 @@ export const ProvisionerDaemonsPage: FC = () => {
116
116
gap : 12 ,
117
117
} }
118
118
>
119
- {
120
- // Add pills for the supported provisioenr types.
121
- daemon . provisioners . map ( ( provType ) => {
122
- return (
123
- < Tooltip title = "Type" key = { daemon . id + provType } >
124
- < Pill icon = { < ViewInArIcon /> } >
125
- < code > { provType } </ code >
126
- </ Pill >
127
- </ Tooltip >
128
- ) ;
129
- } )
130
- }
131
119
< Tooltip title = "API Version" >
132
120
< Pill icon = { < SwapHoriz /> } >
133
121
< code > { daemon . api_version } </ code >
You can’t perform that action at this time.
0 commit comments