github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/tekton/syntax/constants.go (about) 1 package syntax 2 3 const ( 4 // TektonAPIVersion the APIVersion for using Tekton 5 TektonAPIVersion = "tekton.dev/v1alpha1" 6 7 // LabelStageName - the name for the label that will have the stage name on the Task. 8 LabelStageName = "jenkins.io/task-stage-name" 9 10 // DefaultStageNameForBuildPack - the name we use for the single stage created from build packs currently. 11 DefaultStageNameForBuildPack = "from-build-pack" 12 13 // KanikoDockerImage - the default image used for Kaniko builds 14 KanikoDockerImage = "gcr.io/kaniko-project/executor:v0.22.0" 15 16 // DefaultContainerImage - the default image used for pipelines if none is specified. 17 DefaultContainerImage = "ghcr.io/jenkins-x/builder-maven" 18 )