-
Notifications
You must be signed in to change notification settings - Fork 336
/
setup.go
93 lines (83 loc) · 3.07 KB
/
setup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package devcontainer
import (
"context"
"encoding/json"
"fmt"
"io"
"os"
"runtime"
"github.com/loft-sh/devpod/pkg/agent"
"github.com/loft-sh/devpod/pkg/compress"
"github.com/loft-sh/devpod/pkg/devcontainer/config"
"github.com/loft-sh/devpod/pkg/devcontainer/sshtunnel"
"github.com/loft-sh/devpod/pkg/driver"
provider2 "github.com/loft-sh/devpod/pkg/provider"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
func (r *runner) setupContainer(
ctx context.Context,
containerDetails *config.ContainerDetails,
mergedConfig *config.MergedDevContainerConfig,
) (*config.Result, error) {
// inject agent
err := agent.InjectAgent(ctx, func(ctx context.Context, command string, stdin io.Reader, stdout io.Writer, stderr io.Writer) error {
return r.Driver.CommandDevContainer(ctx, r.ID, "root", command, stdin, stdout, stderr)
}, false, agent.ContainerDevPodHelperLocation, agent.DefaultAgentDownloadURL(), false, r.Log)
if err != nil {
return nil, errors.Wrap(err, "inject agent")
}
r.Log.Debugf("Injected into container")
defer r.Log.Debugf("Done setting up container")
// compress info
result := &config.Result{
MergedConfig: mergedConfig,
SubstitutionContext: r.SubstitutionContext,
ContainerDetails: containerDetails,
}
marshalled, err := json.Marshal(result)
if err != nil {
return nil, err
}
compressed, err := compress.Compress(string(marshalled))
if err != nil {
return nil, err
}
// compress container workspace info
workspaceConfigRaw, err := json.Marshal(&provider2.ContainerWorkspaceInfo{
IDE: r.WorkspaceConfig.Workspace.IDE,
CLIOptions: r.WorkspaceConfig.CLIOptions,
Dockerless: r.WorkspaceConfig.Agent.Dockerless,
ContainerTimeout: r.WorkspaceConfig.Agent.ContainerTimeout,
})
if err != nil {
return nil, err
}
workspaceConfigCompressed, err := compress.Compress(string(workspaceConfigRaw))
if err != nil {
return nil, err
}
// check if docker driver
_, isDockerDriver := r.Driver.(driver.DockerDriver)
// ssh tunnel
sshTunnelCmd := fmt.Sprintf("'%s' helper ssh-server --stdio", agent.ContainerDevPodHelperLocation)
if r.Log.GetLevel() == logrus.DebugLevel {
sshTunnelCmd += " --debug"
}
// setup container
r.Log.Infof("Setup container...")
setupCommand := fmt.Sprintf("'%s' agent container setup --setup-info '%s' --container-workspace-info '%s'", agent.ContainerDevPodHelperLocation, compressed, workspaceConfigCompressed)
if runtime.GOOS == "linux" || !isDockerDriver {
setupCommand += " --chown-workspace"
}
if !isDockerDriver {
setupCommand += " --stream-mounts"
}
if r.Log.GetLevel() == logrus.DebugLevel {
setupCommand += " --debug"
}
agentInjectFunc := func(cancelCtx context.Context, sshCmd string, sshTunnelStdinReader, sshTunnelStdoutWriter *os.File, writer io.WriteCloser) error {
return r.Driver.CommandDevContainer(cancelCtx, r.ID, "root", sshCmd, sshTunnelStdinReader, sshTunnelStdoutWriter, writer)
}
return sshtunnel.ExecuteCommand(ctx, nil, agentInjectFunc, sshTunnelCmd, setupCommand, false, true, r.WorkspaceConfig.Agent.InjectDockerCredentials != "false", result, r.Log)
}