forked from strimzi/strimzi-kafka-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault_variables.yaml
More file actions
31 lines (31 loc) · 1.2 KB
/
default_variables.yaml
File metadata and controls
31 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Default variables for jobs
variables:
${{ if eq( variables['Build.SourceBranch'], 'refs/heads/main' ) }}:
pull_request: false
docker_org: strimzi
docker_registry: quay.io
tag: latest
commit: latest
${{ if ne( variables['Build.SourceBranch'], 'refs/heads/main' ) }}:
${{ if or(startsWith( variables['Build.SourceBranch'], 'refs/tags/' ), startsWith( variables['Build.SourceBranch'], 'refs/heads/release' )) }}:
pull_request: false
docker_org: strimzi
docker_registry: quay.io
commit: release
tag: release
${{ if not(or(startsWith( variables['Build.SourceBranch'], 'refs/tags/' ), startsWith( variables['Build.SourceBranch'], 'refs/heads/release' ))) }}:
pull_request: true
docker_org: strimzi
docker_registry: localhost:5000
commit: $(Build.SourceVersion)
tag: pr
repo_slug: $(Build.Repository.Name)
commit_message: $(Build.SourceVersionMessage)
test_cluster: minikube
test_kubectl_version: v1.27.0
strimzi_default_log_level: DEBUG
operator_image_pull_policy: IfNotPresent
components_image_pull_policy: IfNotPresent
MVN_CACHE_FOLDER: $(HOME)/.m2/repository
test_log_dir: systemtest/target/logs
connectImage: ""