Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/containerd/amazon_linux.go
2501 views
1
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
2
/// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
package containerd
6
7
// Amazon Linux only requires a different containerd location - the socket is same as default
8
const (
9
ContainerdLocationAmazonLinux ContainerdLocation = "/run/containerd/io.containerd.runtime.v2.task/k8s.io"
10
)
11
12
func init() {
13
loc.AddContainerd(ContainerdLocationAmazonLinux)
14
}
15
16