Closed AObuchow closed 8 months ago
:x: E2E Happy path tests failed :heavy_exclamation_mark: - Jenkins job - [See Details
Use comment "[wto-ci-test]" to rerun happy path E2E test.
:x: E2E Happy path tests failed :heavy_exclamation_mark: - Jenkins job - [See Details
Use comment "[wto-ci-test]" to rerun happy path E2E test.
What does this PR do?
Is it tested? How?
Testing requires an OpenShift 4.15 cluster.
I've built the controller, index and bundle images from this PR and pushed them to
quay.io/aobuchow/wto-controller:1.10
,quay.io/aobuchow/wto-bundle:1.10
&quay.io/aobuchow/wto-index:1.10
respectively.The accompanying WTO tooling image (built from this PR) has also been pushed to
quay.io/aobuchow/wto-tooling:1.10
.To test the images, set the
WTO_IMG
,BUNDLE_IMG
&INDEX_IMG
environment variables to the above-mentioned repos, i.e:Then run
make install
from the root of this repo.WTO 1.10 should be installed (and viewable on the Installed Operators page of the OpenShift console) using the images built from this PR.
Note: Running the version of WTO installed will still be using
quay.io/wto/web-terminal-operator:next
instead of the image built from this PR, set toWTO_IMG
. To actually test out the controller image, find the web-terminal-operator clusterserviceversion in theopenshift-operators
namespace, and modify thespec.containers.image
field to use the controller image built from this PR. E.g.:The web-terminal-controller deployment should spawn a new pod with the updated container, and you should be able to create web terminals.
A future PR could automate this process of updating the CSV for testing the controller image (as this confused me a bit while working on this PR).