2022-04-06 13:30:49 +00:00
|
|
|
// Copyright 2022 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package constant
|
|
|
|
|
2023-01-10 16:34:21 +00:00
|
|
|
// PrivilegedPlugins can be changed by 'WOODPECKER_ESCALATE' at runtime
|
2022-04-06 13:30:49 +00:00
|
|
|
var PrivilegedPlugins = []string{
|
|
|
|
"plugins/docker",
|
|
|
|
"plugins/gcr",
|
|
|
|
"plugins/ecr",
|
|
|
|
"woodpeckerci/plugin-docker-buildx",
|
2023-08-16 13:17:43 +00:00
|
|
|
"codeberg.org/woodpecker-plugins/docker-buildx",
|
2022-04-06 13:30:49 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 07:12:17 +00:00
|
|
|
// DefaultConfigOrder represent the priority in witch woodpecker search for a pipeline config by default
|
2022-11-03 18:12:40 +00:00
|
|
|
// folders are indicated by supplying a trailing /
|
|
|
|
var DefaultConfigOrder = [...]string{
|
|
|
|
".woodpecker/",
|
|
|
|
".woodpecker.yaml",
|
2023-04-29 08:12:36 +00:00
|
|
|
".woodpecker.yml",
|
2022-11-03 18:12:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 13:30:49 +00:00
|
|
|
const (
|
2023-01-10 16:34:21 +00:00
|
|
|
// DefaultCloneImage can be changed by 'WOODPECKER_DEFAULT_CLONE_IMAGE' at runtime
|
2023-08-16 13:17:43 +00:00
|
|
|
DefaultCloneImage = "docker.io/woodpeckerci/plugin-git:2.1.1"
|
2022-04-06 13:30:49 +00:00
|
|
|
)
|
2023-03-20 20:17:49 +00:00
|
|
|
|
|
|
|
var TrustedCloneImages = []string{
|
|
|
|
DefaultCloneImage,
|
2023-08-16 13:17:43 +00:00
|
|
|
"quay.io/woodpeckerci/plugin-git",
|
2023-03-20 20:17:49 +00:00
|
|
|
}
|
2023-11-06 00:37:02 +00:00
|
|
|
|
|
|
|
const DefaultPipelineVersion = 1
|