mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 21:44:56 +01:00
Moved docker labels, s2i scripts, and deprecated env var constants to it's own package. Fixes #882
14 lines
463 B
Go
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"
|
|
)
|