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

feat: Remove Prow Jobs for Runtime Watcher #11773

Merged
Merged
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
97 changes: 0 additions & 97 deletions prow/jobs/kyma-project/runtime-watcher/runtime-watcher.yaml
Original file line number Diff line number Diff line change
@@ -1,102 +1,5 @@
presubmits:
kyma-project/runtime-watcher:
- name: pull-runtime-watcher-img-build
annotations:
description: "build and push PR image for runtime-watcher"
owner: "jellyfish"
labels:
prow.k8s.io/pubsub.project: "sap-kyma-prow"
prow.k8s.io/pubsub.runID: "pull-runtime-watcher-img-build"
prow.k8s.io/pubsub.topic: "prowjobs"
preset-sa-kyma-push-images: "true"
preset-image-builder-ado-token: "true"
always_run: true
skip_report: false
decorate: true
cluster: untrusted-workload
max_concurrency: 10
spec:
containers:
- image: "europe-docker.pkg.dev/kyma-project/prod/image-builder:v20240829-9a504e1b"
securityContext:
privileged: false
seccompProfile:
type: RuntimeDefault
allowPrivilegeEscalation: false
command:
- "/image-builder"
args:
- "--build-in-ado=true"
- "--name=runtime-watcher"
- "--config=/config/kaniko-build-config.yaml"
- "--context=runtime-watcher"
- "--dockerfile=Dockerfile"
resources:
requests:
memory: 8Gi
cpu: 2
limits:
memory: 16Gi
cpu: 4
volumeMounts:
- name: config
mountPath: /config
readOnly: true
volumes:
- name: config
configMap:
name: kaniko-build-config
postsubmits:
kyma-project/runtime-watcher:
- name: main-runtime-watcher-build
annotations:
description: "build runtime watcher image with the latest tag"
owner: "jellyfish"
labels:
prow.k8s.io/pubsub.project: "sap-kyma-prow"
prow.k8s.io/pubsub.runID: "watcher-build-latest"
prow.k8s.io/pubsub.topic: "prowjobs"
preset-sa-kyma-push-images: "true"
preset-image-builder-ado-token: "true"
always_run: true
skip_report: false
decorate: true
cluster: trusted-workload
max_concurrency: 10
branches:
- ^main$
spec:
containers:
- image: "europe-docker.pkg.dev/kyma-project/prod/image-builder:v20240829-9a504e1b"
securityContext:
privileged: false
seccompProfile:
type: RuntimeDefault
allowPrivilegeEscalation: false
command:
- "/image-builder"
args:
- "--build-in-ado=true"
- "--name=runtime-watcher-skr"
- "--config=/config/kaniko-build-config.yaml"
- "--context=runtime-watcher"
- "--dockerfile=Dockerfile"
- "--tag=latest"
resources:
requests:
memory: 8Gi
cpu: 2
limits:
memory: 16Gi
cpu: 4
volumeMounts:
- name: config
mountPath: /config
readOnly: true
volumes:
- name: config
configMap:
name: kaniko-build-config
- name: release-runtime-watcher-build
annotations:
amritanshusikdar marked this conversation as resolved.
Show resolved Hide resolved
description: "build runtime watcher release image by semantic version tag"
Expand Down
Loading