mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 09:32:52 +00:00
82 lines
2.7 KiB
Go
82 lines
2.7 KiB
Go
/*
|
|
Copyright 2021 The KubeSphere Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package containerruntime
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
dockerSocket = "/var/run/docker.sock" // The Docker socket is not CRI compatible
|
|
|
|
DefaultDockerCRISocket = "/var/run/dockershim.sock"
|
|
containerdSocket = "/run/containerd/containerd.sock"
|
|
)
|
|
|
|
// isExistingSocket checks if path exists and is domain socket
|
|
func isExistingSocket(path string) bool {
|
|
fileInfo, err := os.Stat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
return fileInfo.Mode()&os.ModeSocket != 0
|
|
}
|
|
|
|
// detectCRISocketImpl is separated out only for test purposes, DON'T call it directly, use DetectCRISocket instead
|
|
func detectCRISocketImpl(isSocket func(string) bool) (string, error) {
|
|
foundCRISockets := []string{}
|
|
knownCRISockets := []string{
|
|
// Docker and containerd sockets are special cased below, hence not to be included here
|
|
"/var/run/crio/crio.sock",
|
|
}
|
|
|
|
if isSocket(containerdSocket) {
|
|
// Docker 18.09 gets bundled together with containerd, thus having both dockerSocket and containerdSocket present.
|
|
// Docker will be deprecated, so prefer to use containerd.
|
|
foundCRISockets = append(foundCRISockets, containerdSocket)
|
|
} else if isSocket(dockerSocket) {
|
|
// the path in dockerSocket is not CRI compatible, hence we should replace it with a CRI compatible socket
|
|
foundCRISockets = append(foundCRISockets, DefaultDockerCRISocket)
|
|
}
|
|
|
|
for _, socket := range knownCRISockets {
|
|
if isSocket(socket) {
|
|
foundCRISockets = append(foundCRISockets, socket)
|
|
}
|
|
}
|
|
|
|
switch len(foundCRISockets) {
|
|
case 0:
|
|
// Fall back to Docker if no CRI is detected, we can error out later on if we need it
|
|
return containerdSocket, nil
|
|
case 1:
|
|
// Precisely one CRI found, use that
|
|
return foundCRISockets[0], nil
|
|
default:
|
|
// Multiple CRIs installed?
|
|
return "", errors.Errorf("Found multiple CRI sockets, please use --cri-socket to select one: %s", strings.Join(foundCRISockets, ", "))
|
|
}
|
|
}
|
|
|
|
// DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
|
|
func DetectCRISocket() (string, error) {
|
|
return detectCRISocketImpl(isExistingSocket)
|
|
}
|