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

Run vsphere UPI tests for installer repo #3305

Merged
merged 2 commits into from
Apr 16, 2019
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 @@ -100,3 +100,7 @@ tests:
commands: TEST_SUITE=openshift/conformance run-tests
openshift_ansible_40:
cluster_profile: aws-centos-40
- as: e2e-vsphere
commands: TEST_SUITE=openshift/conformance/parallel run-tests
openshift_installer_upi:
cluster_profile: vsphere
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,64 @@ presubmits:
name: prow-job-cluster-scaleup-e2e-40
name: job-definition
trigger: '(?m)^/test (?:.*? )?e2e-rhel-scaleup(?: .*?)?$'
- agent: kubernetes
always_run: false
branches:
- master
context: ci/prow/e2e-vsphere
decorate: true
decoration_config:
skip_cloning: true
labels:
ci-operator.openshift.io/prowgen-controlled: "true"
name: pull-ci-openshift-installer-master-e2e-vsphere
optional: true
rerun_command: /test e2e-vsphere
spec:
containers:
- args:
- --artifact-dir=$(ARTIFACTS)
- --give-pr-author-access-to-namespace=true
- --secret-dir=/usr/local/e2e-vsphere-cluster-profile
- --target=e2e-vsphere
- --template=/usr/local/e2e-vsphere
command:
- ci-operator
env:
- name: CLUSTER_TYPE
value: vsphere
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: openshift-installer-master.yaml
name: ci-operator-master-configs
- name: JOB_NAME_SAFE
value: e2e-vsphere
- 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-vsphere-cluster-profile
name: cluster-profile
- mountPath: /usr/local/e2e-vsphere
name: job-definition
subPath: cluster-launch-installer-upi-e2e.yaml
serviceAccountName: ci-operator
volumes:
- name: cluster-profile
projected:
sources:
- secret:
name: cluster-secrets-vsphere
- configMap:
name: prow-job-cluster-launch-installer-upi-e2e
name: job-definition
trigger: '(?m)^/test (?:.*? )?e2e-vsphere(?: .*?)?$'
- agent: kubernetes
always_run: true
branches:
Expand Down
Loading