Skip to content

Commit 3bce2bd

Browse files
committed
remove ui pills for provisioners on health page
1 parent 6f40ab1 commit 3bce2bd

File tree

2 files changed

+7
-18
lines changed

2 files changed

+7
-18
lines changed

cli/testdata/server-config.yaml.golden

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -375,14 +375,15 @@ telemetry:
375375
# Tune the behavior of the provisioner, which is responsible for creating,
376376
# updating, and deleting workspace resources.
377377
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.
380380
# (default: 3, type: int)
381381
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
386387
# Deprecated and ignored.
387388
# (default: 1s, type: duration)
388389
daemonPollInterval: 1s

site/src/pages/HealthPage/ProvisionerDaemonsPage.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -116,18 +116,6 @@ export const ProvisionerDaemonsPage: FC = () => {
116116
gap: 12,
117117
}}
118118
>
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-
}
131119
<Tooltip title="API Version">
132120
<Pill icon={<SwapHoriz />}>
133121
<code>{daemon.api_version}</code>

0 commit comments

Comments
 (0)