Skip to content

Commit

Permalink
Use semantic versioning for eventing manager (#9473)
Browse files Browse the repository at this point in the history
* Use semantic versioning for eventing manager

* Restore template
  • Loading branch information
the1bit authored Dec 7, 2023
1 parent 8010e0b commit 27e0f69
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ postsubmits: # runs on main
cluster: trusted-workload
max_concurrency: 10
branches:
- ^\d+\.\d+\.\d+(?:-.*)?$
- ^\d+\.\d+\.\d+(?:-.*)?$ # Watches for new Tag
spec:
containers:
- image: "eu.gcr.io/sap-kyma-neighbors-dev/image-builder:v20230313-8dfce5f0b"
Expand All @@ -128,7 +128,7 @@ postsubmits: # runs on main
- "--config=/config/kaniko-build-config.yaml"
- "--context=."
- "--dockerfile=Dockerfile"
- "--tag={{ .Env \"PULL_BASE_SHA\" }}"
- "--tag={{ .Env \"PULL_BASE_REF\" }}"
resources:
requests:
memory: 1.5Gi
Expand Down Expand Up @@ -166,7 +166,9 @@ postsubmits: # runs on main
cluster: trusted-workload
max_concurrency: 10
branches:
- ^\d+\.\d+\.\d+(?:-.*)?$
- ^\d+\.\d+\.\d+(?:-.*)?$ # Watches for new Tag
skip_branches:
- 0.0.0 # Skip for 0.0.0 Tag
spec:
containers:
- image: "europe-docker.pkg.dev/kyma-project/prod/testimages/buildpack-go:v20231206-59f0cdfa"
Expand All @@ -181,7 +183,7 @@ postsubmits: # runs on main
- "ci"
env:
- name: IMG
value: "europe-docker.pkg.dev/kyma-project/prod/eventing-manager:${PULL_BASE_SHA}"
value: "europe-docker.pkg.dev/kyma-project/prod/eventing-manager:${PULL_BASE_REF}"
- name: KUSTOMIZE_VERSION
value: "v4.5.6"
- name: MODULE_REGISTRY
Expand All @@ -207,6 +209,8 @@ postsubmits: # runs on main
skip_report: false
decorate: true
cluster: trusted-workload
skip_branches:
- 0.0.0 # Skip for 0.0.0 Tag
max_concurrency: 10
spec:
containers:
Expand Down

0 comments on commit 27e0f69

Please sign in to comment.