1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 21:44:56 +01:00
Files
Adam Kaplan 9b55f54e76 api/constants package
Moved docker labels, s2i scripts, and deprecated env var constants
to it's own package.

Fixes #882
2018-06-21 08:49:12 -04:00

14 lines
463 B
Go

package constants
// Deprecated Docker ENV variables
const (
// LocationEnvironment is the environment variable that specifies where to place artifacts in a builder image.
//
// DEPRECATED - use DestinationLabel instead.
LocationEnvironment = "STI_LOCATION"
// ScriptsURLEnvironment is the environment variable name that specifies where to look for S2I scripts.
//
// DEPRECATED - use ScriptsURLLabel instead.
ScriptsURLEnvironment = "STI_SCRIPTS_URL"
)