Path: blob/main/components/registry-facade-api/go/provider.go
2496 views
// Copyright (c) 2020 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package api56const (7// ProviderPrefixBase32 is the image repository prefix for base32 image spec.8// Unlike the other prefixes this one is so short and undescriptive to fit as much data into the9// 255 characters of a Docker repository name as possible.10ProviderPrefixBase32 = "c"1112// ProviderPrefixRemote is the image repository prefix for remotely fetched image specs13ProviderPrefixRemote = "remote"1415// ProviderPrefixFixed is the image repository prefix for fixed image spec. This is useful16// for debugging only.17ProviderPrefixFixed = "fixed"18)192021