-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
ci-operator/templates/openshift/installer: Drop unnecessary copy of installer to shared volume #7063
Conversation
…nstaller to shared volume I started doing this in 00d7b3f (ci-operator/templates/openshift: Use IMAGE_TESTS for teardown gzip, 2019-02-19, openshift#2911), but the teardown container doesn't need an installer injected if it running an installer image. $ git grep -A1 'name: teardown' ci-operator/templates/openshift/installer | grep image: ci-operator/templates/openshift/installer/cluster-launch-installer-custom-test-image.yaml- image: ${IMAGE_TESTS} ci-operator/templates/openshift/installer/cluster-launch-installer-e2e.yaml- image: ${IMAGE_TESTS} ci-operator/templates/openshift/installer/cluster-launch-installer-libvirt-e2e.yaml- image: ${IMAGE_LIBVIRT_INSTALLER} ci-operator/templates/openshift/installer/cluster-launch-installer-metal-e2e.yaml- image: ${IMAGE_UPI_INSTALLER} ci-operator/templates/openshift/installer/cluster-launch-installer-openstack-e2e.yaml- image: ${IMAGE_OPENSTACK_INSTALLER} ci-operator/templates/openshift/installer/cluster-launch-installer-remote-libvirt-e2e.yaml- image: "${IMAGE_LIBVIRT_INSTALLER}" ci-operator/templates/openshift/installer/cluster-launch-installer-src.yaml- image: ${IMAGE_TESTS} ci-operator/templates/openshift/installer/cluster-launch-installer-upi-e2e.yaml- image: ${IMAGE_UPI_INSTALLER} ci-operator/templates/openshift/installer/cluster-launch-installer-upi-src.yaml- image: ${IMAGE_UPI_INSTALLER} So this commit removes the openshift-installer copy from the templates that use installer images, and leaves it for templates that use test images.
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: vrutkovs, wking The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Github says it needs rebase, but Prow didn't notice that |
@wking: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@wking: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
@wking: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
@wking: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I started doing this in 00d7b3f (#2911), but the teardown container doesn't need an installer injected if it running an installer image.
So this commit removes the
openshift-installer
copy from the templates that use installer images, and leaves it for templates that use test images.