github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/boot/constants.go (about)

     1  package boot
     2  
     3  const (
     4  	// PullRequestLabel is the label used on pull requests created by boot
     5  	PullRequestLabel = "jx/boot"
     6  	// OverrideTLSWarningEnvVarName is an environment variable set in BDD tests to override the error (in batch mode)
     7  	// that is created if TLS is not enabled
     8  	OverrideTLSWarningEnvVarName = "TESTING_ONLY_OVERRIDE_TLS_WARNING"
     9  	// ConfigBaseRefEnvVarName is the env var name used in the pipeline to reference the base used for the config
    10  	ConfigBaseRefEnvVarName = "CONFIG_BASE_REF"
    11  	// ConfigRepoURLEnvVarName is the env var name used in the pipeline to reference the URL of the config
    12  	ConfigRepoURLEnvVarName = "CONFIG_REPO_URL"
    13  	// VersionsRepoURLEnvVarName is the env var name used in the pipeline to reference the URL of versions repo
    14  	VersionsRepoURLEnvVarName = "VERSIONS_REPO_URL"
    15  	// VersionsRepoBaseRefEnvVarName is the env var name used in the pipeline to reference the ref of versions repo
    16  	VersionsRepoBaseRefEnvVarName = "VERSIONS_BASE_REF"
    17  	// DisablePushUpdatesToDevEnvironment is the env var name used to disable pushing changes to the local git clone
    18  	// of the dev environment to the master branch of the git repository in the `jx step verify env` command
    19  	// e.g. to test out local changes to git in a local fork of the boot config with `jx boot --no-update-git`
    20  	DisablePushUpdatesToDevEnvironment = "JX_NO_DEV_GIT_UPDATES"
    21  )