Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Semantic versioning in ACM release images #10767

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ presubmits: # runs on PRs

postsubmits: # runs on main
kyma-project/application-connector-manager:
- name: post-application-connector-manager-build
- name: main-application-connector-manager-build
annotations:
description: "Job to build application-connector operator for a release"
owner: "framefrog"
labels:
prow.k8s.io/pubsub.project: "sap-kyma-prow"
prow.k8s.io/pubsub.runID: "post-application-connector-manager-build"
prow.k8s.io/pubsub.runID: "main-application-connector-manager-build"
prow.k8s.io/pubsub.topic: "prowjobs"
preset-sa-kyma-push-images: "true"
preset-signify-prod-secret: "true"
Expand All @@ -72,7 +72,6 @@ postsubmits: # runs on main
cluster: trusted-workload
max_concurrency: 10
branches:
- ^master$
- ^main$
spec:
containers:
Expand Down Expand Up @@ -108,6 +107,57 @@ postsubmits: # runs on main
- name: signify-secret
secret:
secretName: signify-dev-secret
- name: release-application-connector-manager-build
annotations:
description: "Job to build application-connector operator for a release"
owner: "framefrog"
labels:
prow.k8s.io/pubsub.project: "sap-kyma-prow"
prow.k8s.io/pubsub.runID: "release-application-connector-manager-build"
prow.k8s.io/pubsub.topic: "prowjobs"
preset-sa-kyma-push-images: "true"
preset-signify-prod-secret: "true"
always_run: true
skip_report: false
decorate: true
cluster: trusted-workload
max_concurrency: 10
branches:
- ^\d+\.\d+\.\d+(?:-.*)?$
spec:
containers:
- image: "europe-docker.pkg.dev/kyma-project/prod/image-builder:v20240521-098832b4"
securityContext:
privileged: false
seccompProfile:
type: RuntimeDefault
allowPrivilegeEscalation: false
command:
- "/image-builder"
args:
- "--name=application-connector-manager"
- "--config=/config/kaniko-build-config.yaml"
- "--context=."
- "--dockerfile=Dockerfile"
- "--tag=$(PULL_BASE_REF)"
resources:
requests:
memory: 1.5Gi
cpu: 1
volumeMounts:
- name: config
mountPath: /config
readOnly: true
- name: signify-secret
mountPath: /secret
readOnly: true
volumes:
- name: config
configMap:
name: kaniko-build-config
- name: signify-secret
secret:
secretName: signify-dev-secret
- name: post-main-application-connector-manager-upgrade-latest-to-main
annotations:
description: "upgrade application-connector manager test"
Expand All @@ -126,7 +176,6 @@ postsubmits: # runs on main
cluster: trusted-workload
max_concurrency: 10
branches:
- ^master$
- ^main$
extra_refs:
- org: kyma-project
Expand Down
112 changes: 0 additions & 112 deletions templates/data/generic_module_data.yaml

This file was deleted.

Loading