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 5package containerd 6 7// Amazon Linux only requires a different containerd location - the socket is same as default 8const ( 9 ContainerdLocationAmazonLinux ContainerdLocation = "/run/containerd/io.containerd.runtime.v2.task/k8s.io" 10) 11 12func init() { 13 loc.AddContainerd(ContainerdLocationAmazonLinux) 14} 15 16