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
Expand Up @@ -59,6 +59,10 @@ tests:
run-tests
openshift_installer:
cluster_profile: aws
- as: cluster-bootimages
commands: ./test/e2e/old-bootimages.sh
openshift_installer_src:
cluster_profile: aws
- as: e2e-vsphere-upi
commands: TEST_SUITE=openshift/conformance/parallel run-tests
openshift_installer_upi:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,82 @@
presubmits:
openshift/machine-config-operator:
- agent: kubernetes
always_run: false
branches:
- master
cluster: api.ci
context: ci/prow/cluster-bootimages
decorate: true
decoration_config:
skip_cloning: true
labels:
ci-operator.openshift.io/prowgen-controlled: "true"
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: pull-ci-openshift-machine-config-operator-master-cluster-bootimages
rerun_command: /test cluster-bootimages
spec:
containers:
- args:
- --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson
- --lease-server-password-file=/etc/boskos/password
- --report-password-file=/etc/report/password.txt
- --report-username=ci
- --secret-dir=/usr/local/cluster-bootimages-cluster-profile
- --target=cluster-bootimages
- --template=/usr/local/cluster-bootimages
command:
- ci-operator
env:
- name: CLUSTER_TYPE
value: aws
- name: JOB_NAME_SAFE
value: cluster-bootimages
- name: TEST_COMMAND
value: ./test/e2e/old-bootimages.sh
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /etc/boskos
name: boskos
readOnly: true
- mountPath: /usr/local/cluster-bootimages-cluster-profile
name: cluster-profile
- mountPath: /usr/local/cluster-bootimages
name: job-definition
subPath: cluster-launch-installer-src.yaml
- mountPath: /etc/pull-secret
name: pull-secret
readOnly: true
- mountPath: /etc/report
name: result-aggregator
readOnly: true
serviceAccountName: ci-operator
volumes:
- name: boskos
secret:
items:
- key: password
path: password
secretName: boskos-credentials
- name: cluster-profile
projected:
sources:
- secret:
name: cluster-secrets-aws
- configMap:
name: prow-job-cluster-launch-installer-src
name: job-definition
- name: pull-secret
secret:
secretName: regcred
- name: result-aggregator
secret:
secretName: result-aggregator
trigger: (?m)^/test( | .* )cluster-bootimages,?($|\s.*)
- agent: kubernetes
always_run: false
branches:
Expand Down