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

installer smoke_tests use LOCAL_IMAGE for optional installer-smoke image #1517

Merged
merged 1 commit into from
Sep 14, 2018
Merged
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
10 changes: 5 additions & 5 deletions ci-operator/templates/cluster-launch-installer-e2e-smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ parameters:
required: true
- name: IMAGE_TESTS
required: true
- name: IMAGE_INSTALLER_SMOKE
- name: LOCAL_IMAGE_INSTALLER_SMOKE
required: true
- name: CLUSTER_TYPE
required: true
Expand Down Expand Up @@ -71,7 +71,7 @@ objects:
- /tmp/shared/oc

- name: smoke-test
image: ${IMAGE_INSTALLER_SMOKE}
image: ${LOCAL_IMAGE_INSTALLER_SMOKE}
volumeMounts:
- name: shared-tmp
mountPath: /tmp/shared
Expand All @@ -84,7 +84,7 @@ objects:

# Once admin.kubeconfig exists, executes shared tests
- name: test
image: ${IMAGE_INSTALLER_SMOKE}
image: ${LOCAL_IMAGE_INSTALLER_SMOKE}
resources:
requests:
cpu: 1
Expand Down Expand Up @@ -156,7 +156,7 @@ objects:

# Runs an install
- name: setup
image: ${IMAGE_INSTALLER_SMOKE}
image: ${LOCAL_IMAGE_INSTALLER_SMOKE}
volumeMounts:
- name: shared-tmp
mountPath: /tmp
Expand Down Expand Up @@ -257,7 +257,7 @@ objects:

# Performs cleanup of all created resources
- name: teardown
image: ${IMAGE_INSTALLER_SMOKE}
image: ${LOCAL_IMAGE_INSTALLER_SMOKE}
volumeMounts:
- name: shared-tmp
mountPath: /tmp/shared
Expand Down