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

machine-config-operator: Add e2e-aws-op job #2577

Merged
merged 1 commit into from
Jan 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 @@ -50,3 +50,7 @@ tests:
commands: TEST_SUITE=openshift/conformance/parallel run-tests
openshift_installer:
cluster_profile: aws
- as: e2e-aws-op
commands: make test-e2e
openshift_installer_src:
cluster_profile: aws
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,64 @@ presubmits:
name: prow-job-cluster-launch-installer-e2e
name: job-definition
trigger: ((?m)^/test( all| e2e-aws),?(\s+|$))
- agent: kubernetes
cgwalters marked this conversation as resolved.
Show resolved Hide resolved
always_run: false
branches:
- master
context: ci/prow/e2e-aws-op
decorate: true
decoration_config:
skip_cloning: true
name: pull-ci-openshift-machine-config-operator-master-e2e-aws-op
rerun_command: /test e2e-aws-op
cgwalters marked this conversation as resolved.
Show resolved Hide resolved
run_if_changed: ^([^d]|d(d|o(d|cd))*([^do]|o([^cd]|c[^ds])))*(d(d|o(d|cd))*(oc?)?)?$
spec:
containers:
- args:
- --artifact-dir=$(ARTIFACTS)
- --give-pr-author-access-to-namespace=true
- --secret-dir=/usr/local/e2e-aws-op-cluster-profile
- --target=e2e-aws-op
- --template=/usr/local/e2e-aws-op
command:
- ci-operator
env:
- name: CLUSTER_TYPE
value: aws
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: openshift-machine-config-operator-master.yaml
name: ci-operator-configs
- name: JOB_NAME_SAFE
value: e2e-aws-op
- name: TEST_COMMAND
value: make test-e2e
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
limits:
cpu: 500m
requests:
cpu: 10m
volumeMounts:
- mountPath: /usr/local/e2e-aws-op-cluster-profile
name: cluster-profile
- mountPath: /usr/local/e2e-aws-op
name: job-definition
subPath: cluster-launch-installer-src.yaml
serviceAccountName: ci-operator
volumes:
- name: cluster-profile
projected:
sources:
- secret:
name: cluster-secrets-aws
- configMap:
name: prow-job-cluster-launch-installer-src
name: job-definition
trigger: ((?m)^/test( all| e2e-aws-op),?(\s+|$))
- agent: kubernetes
always_run: true
branches:
Expand Down