2022-12-08 13:05:19 -03:00

20 lines
749 B
Go

// Copyright (c) 2020 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 api
const (
// ProviderPrefixBase32 is the image repository prefix for base32 image spec.
// Unlike the other prefixes this one is so short and undescriptive to fit as much data into the
// 255 characters of a Docker repository name as possible.
ProviderPrefixBase32 = "c"
// ProviderPrefixRemote is the image repository prefix for remotely fetched image specs
ProviderPrefixRemote = "remote"
// ProviderPrefixFixed is the image repository prefix for fixed image spec. This is useful
// for debugging only.
ProviderPrefixFixed = "fixed"
)