- Notifications
You must be signed in to change notification settings - Fork928
feat: Improve resource preview and first-time experience#946
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
kylecarbs commentedApr 10, 2022
- Adds resource preview table.
- Reorganizes prompts on workspace create.
- Improves english in various places.
This enables a "kubernetes_pod" to attach multiple agents thatcould be for multiple services. Each agent is required to havea unique name, so SSH syntax is:`coder ssh <workspace>.<agent>`A resource can have zero agents too, they aren't required.
This enables a "kubernetes_pod" to attach multiple agents thatcould be for multiple services. Each agent is required to havea unique name, so SSH syntax is:`coder ssh <workspace>.<agent>`A resource can have zero agents too, they aren't required.
This command was `true` by default, which causesa confusing user experience.
codecovbot commentedApr 10, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## main #946 +/- ##==========================================+ Coverage 66.22% 66.76% +0.54%========================================== Files 240 241 +1 Lines 14408 14582 +174 Branches 115 115 ==========================================+ Hits 9542 9736 +194+ Misses 3904 3864 -40- Partials 962 982 +20
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
site/
changes LGTM ✔️
@@ -17,7 +17,7 @@ const config: PlaywrightTestConfig = { | |||
// https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests | |||
webServer: { | |||
// Run the coder daemon directly. | |||
command: `go run -tags embed ${path.join(__dirname, "../../cmd/coder/main.go")} start --dev --tunnel=false`, | |||
command: `go run -tags embed ${path.join(__dirname, "../../cmd/coder/main.go")} start --dev --skip-tunnel`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
👍 LGTM
agent/agent.go Outdated
@@ -100,6 +100,10 @@ func (a *agent) run(ctx context.Context) { | |||
} | |||
func (a *agent) handlePeerConn(ctx context.Context, conn *peer.Conn) { | |||
go func() { | |||
<-a.closed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
It feels strange to be doing this in one goroutine and waiting forconn.Closed()
in another goroutine, just to callDone()
. Can we not do it in one?
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Cian Johnston <public@cianjohnston.ie>
Uh oh!
There was an error while loading.Please reload this page.
c3ba120
to5f2d858
Compare00a9994
to421dd0e
Compare