Skip to content
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
@@ -1,6 +1,6 @@
base_images:
kubernetes-sigs-jobset:
name: "4.21"
name: 0.11.0
namespace: ocp
tag: kubernetes-sigs-jobset
build_root:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
build_root:
from_repository: true
images:
- dockerfile_path: Dockerfile.ci
to: kubernetes-sigs-jobset
promotion:
to:
- name: 0.11.0
namespace: ocp
resources:
'*':
limits:
memory: 4Gi
requests:
cpu: 100m
memory: 200Mi
tag_specification:
name: "4.21"
namespace: ocp
tests:
- as: verify
commands: HOME=$( mktemp -d ) GOLANGCI_LINT_CACHE=/tmp/.cache GOCACHE=/tmp/ GOFLAGS='-mod=readonly'
make -f Makefile-ocp.mk verify verify-ocp
container:
from: src
- as: test-integration
commands: GOFLAGS='-mod=readonly' make test-integration
container:
from: src
- as: test
commands: GOFLAGS='-mod=readonly' make test
container:
from: src
- as: fips-image-scan-kubernetes-sigs-jobset
skip_if_only_changed: ^\.tekton/|\.md$|^(LICENSE|OWNERS)$
steps:
dependencies:
SCAN_IMAGE: kubernetes-sigs-jobset
test:
- ref: fips-check-image-scan
- as: security
optional: true
skip_if_only_changed: ^\.tekton/|\.md$|^(LICENSE|OWNERS)$
steps:
workflow: openshift-ci-security
zz_generated_metadata:
branch: release-0.11.0
org: openshift
repo: kubernetes-sigs-jobset
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
postsubmits:
openshift/kubernetes-sigs-jobset:
- agent: kubernetes
always_run: true
branches:
- ^release-0\.11\.0$
cluster: build01
decorate: true
labels:
ci-operator.openshift.io/is-promotion: "true"
ci.openshift.io/generator: prowgen
max_concurrency: 1
name: branch-ci-openshift-kubernetes-sigs-jobset-release-0.11.0-images
spec:
containers:
- args:
- --gcs-upload-secret=/secrets/gcs/service-account.json
- --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson
- --image-mirror-push-secret=/etc/push-secret/.dockerconfigjson
- --promote
- --report-credentials-file=/etc/report/credentials
- --target=[images]
command:
- ci-operator
image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /secrets/gcs
name: gcs-credentials
readOnly: true
- mountPath: /secrets/manifest-tool
name: manifest-tool-local-pusher
readOnly: true
- mountPath: /etc/pull-secret
name: pull-secret
readOnly: true
- mountPath: /etc/push-secret
name: push-secret
readOnly: true
- mountPath: /etc/report
name: result-aggregator
readOnly: true
serviceAccountName: ci-operator
volumes:
- name: manifest-tool-local-pusher
secret:
secretName: manifest-tool-local-pusher
- name: pull-secret
secret:
secretName: registry-pull-credentials
- name: push-secret
secret:
secretName: registry-push-credentials-ci-central
- name: result-aggregator
secret:
secretName: result-aggregator
Loading