Skip to content

feat(site): add a provisioner warning to workspace builds #15686

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1c08ee4
add alert for workspace provisioning
SasSwart Nov 29, 2024
6bd9e00
Merge remote-tracking branch 'origin/main' into jjs/workspace-provisi…
SasSwart Dec 3, 2024
ad9725e
Add provisioner health warning to workspace page
SasSwart Dec 4, 2024
0056301
Add back build logs component
SasSwart Dec 5, 2024
cbeb0dd
make fmt
SasSwart Dec 5, 2024
32aec0b
remove defunct props
SasSwart Dec 5, 2024
79896b2
review notes, documentation and make fmt
SasSwart Dec 5, 2024
319bfce
lint
SasSwart Dec 5, 2024
3d34844
make fmt
SasSwart Dec 5, 2024
ffb5934
review notes
SasSwart Dec 5, 2024
a3c4726
expose provisioner daemons for pending jobs via the api
SasSwart Dec 9, 2024
18412e0
Merge remote-tracking branch 'origin' into jjs/workspace-provisioner-…
SasSwart Dec 9, 2024
ec57690
add back a function that went missing somehow
SasSwart Dec 9, 2024
53cc203
use the correct sqlc version
SasSwart Dec 9, 2024
5fac5ba
fix tests
SasSwart Dec 9, 2024
81fc829
fix tests
SasSwart Dec 9, 2024
dcf12b5
fix tests
SasSwart Dec 9, 2024
fcd7e2e
fix tests
SasSwart Dec 9, 2024
aa5fa4e
update golden files
SasSwart Dec 9, 2024
528b187
Rename new query
SasSwart Dec 9, 2024
d222432
make gen
SasSwart Dec 9, 2024
7b46ffe
make gen
SasSwart Dec 9, 2024
4ccf5d4
add workspaceloadingpage
SasSwart Dec 10, 2024
b954c93
make fmt
SasSwart Dec 10, 2024
38a9b21
fix provisioner warning display on workspace builds
SasSwart Dec 10, 2024
db62476
use the correct loader in the workspace page
SasSwart Dec 10, 2024
5885197
add tests
SasSwart Dec 11, 2024
f91c8ff
show workspace build logs at the appropriate time
SasSwart Dec 11, 2024
ad95c07
update dbmem to match provisioner daemon queries
SasSwart Dec 11, 2024
d2e1612
fix authz test
SasSwart Dec 11, 2024
c9bb07d
fix tests
SasSwart Dec 11, 2024
feaec5a
make gen
SasSwart Dec 11, 2024
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
Prev Previous commit
Next Next commit
remove defunct props
  • Loading branch information
SasSwart committed Dec 5, 2024
commit 32aec0b07be5596403f56d81f7cad8114ff17db1
6 changes: 1 addition & 5 deletions site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,7 @@ export const WorkspaceReadyPage: FC<WorkspaceReadyPageProps> = ({
template={template}
buildLogs={
shouldDisplayBuildLogs && (
<WorkspaceBuildLogsSection
matchedProvisioners={workspace.latest_build.matched_provisioners}
logs={buildLogs}
tags={workspace.latest_build.job.tags}
/>
<WorkspaceBuildLogsSection logs={buildLogs} />
)
}
isOwner={isOwner}
Expand Down
Loading