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 @@ -134,6 +134,10 @@ tests:
openshift_installer:
cluster_profile: aws
upgrade: true
- as: e2e-aws-upi
commands: TEST_SUITE=openshift/conformance/parallel run-tests
openshift_installer_upi:
cluster_profile: aws
- as: e2e-rhel-scaleup
commands: TEST_SUITE=openshift/conformance run-tests
openshift_ansible_40:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ presubmits:
context: ci/prow/e2e-aws-rhel8
decorate: true
decoration_config:
grace_period: 0s
skip_cloning: true
timeout: 0s
name: pull-ci-openshift-installer-master-e2e-aws-rhel8
optional: true
rerun_command: /test e2e-aws-rhel8
Expand Down Expand Up @@ -202,6 +200,64 @@ presubmits:
- secret:
name: cluster-secrets-aws
trigger: '(?m)^/test (?:.*? )?e2e-aws-upgrade(?: .*?)?$'
- agent: kubernetes
always_run: false
branches:
- master
context: ci/prow/e2e-aws-upi
decorate: true
decoration_config:
skip_cloning: true
labels:
ci-operator.openshift.io/prowgen-controlled: "true"
name: pull-ci-openshift-installer-master-e2e-aws-upi
optional: true
rerun_command: /test e2e-aws-upi
spec:
containers:
- args:
- --artifact-dir=$(ARTIFACTS)
- --give-pr-author-access-to-namespace=true
- --secret-dir=/usr/local/e2e-aws-upi-cluster-profile
- --target=e2e-aws-upi
- --template=/usr/local/e2e-aws-upi
command:
- ci-operator
env:
- name: CLUSTER_TYPE
value: aws
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: openshift-installer-master.yaml
name: ci-operator-master-configs
- name: JOB_NAME_SAFE
value: e2e-aws-upi
- name: TEST_COMMAND
value: TEST_SUITE=openshift/conformance/parallel run-tests
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /usr/local/e2e-aws-upi-cluster-profile
name: cluster-profile
- mountPath: /usr/local/e2e-aws-upi
name: job-definition
subPath: cluster-launch-installer-upi-e2e.yaml
serviceAccountName: ci-operator
volumes:
- name: cluster-profile
projected:
sources:
- secret:
name: cluster-secrets-aws
- configMap:
name: prow-job-cluster-launch-installer-upi-e2e
name: job-definition
trigger: '(?m)^/test (?:.*? )?e2e-aws-upi(?: .*?)?$'
- agent: kubernetes
always_run: false
branches:
Expand Down Expand Up @@ -397,9 +453,7 @@ presubmits:
context: ci/prow/e2e-metal
decorate: true
decoration_config:
grace_period: 0s
skip_cloning: true
timeout: 0s
name: pull-ci-openshift-installer-master-e2e-metal
optional: true
rerun_command: /test e2e-metal
Expand Down Expand Up @@ -455,9 +509,7 @@ presubmits:
context: ci/prow/e2e-openstack
decorate: true
decoration_config:
grace_period: 0s
skip_cloning: true
timeout: 0s
name: pull-ci-openshift-installer-master-e2e-openstack
optional: true
rerun_command: /test e2e-openstack
Expand Down
Loading