mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
/// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/gitpod-io/gitpod/common-go/log"
|
|
"github.com/gitpod-io/gitpod/installer/pkg/containerd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// configNodeContainerdCmd represents the validate command
|
|
var configNodeContainerdCmd = &cobra.Command{
|
|
Use: "containerd",
|
|
Short: "Detects the containerd settings for a cluster",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if _, err := configFileExistsAndInit(); err != nil {
|
|
return err
|
|
}
|
|
|
|
_, _, cfg, err := loadConfig(configOpts.ConfigFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
containerd, socket, err := containerd.Detect(configFilesOpts.MountPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Infof("containerd location detected as %s", *containerd)
|
|
log.Infof("containerd socket location detected as %s", *socket)
|
|
|
|
cfg.Workspace.Runtime.ContainerDRuntimeDir = containerd.String()
|
|
cfg.Workspace.Runtime.ContainerDSocket = socket.String()
|
|
|
|
return saveConfigFile(cfg)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
configFilesCmd.AddCommand(configNodeContainerdCmd)
|
|
}
|