-
Notifications
You must be signed in to change notification settings - Fork 71
Run on-cluster-builds in separate namespace to OLM #3798
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 on-cluster-builds in separate namespace to OLM #3798
Conversation
/test ? |
@maschmid: The following commands are available to trigger required jobs:
The following commands are available to trigger optional jobs:
Use
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-sigs/prow repository. |
/test 420-operator-e2e |
/test 420-operator-e2e |
@maschmid: 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-sigs/prow repository. I understand the commands that are listed here. |
420-operator-e2e will still fail because the Tempo operator is not yet available in OCP 4.20 catalog. |
/test 420-kitchensink-e2e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cardil, maschmid 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 |
On OCP 4.20, the on-cluster builds of the Operator bundle and index images fail,
see https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_release/69430/rehearse-69430-periodic-ci-openshift-knative-serverless-operator-main-ocp4.20-lp-interop-operator-e2e-interop-aws-ocp420/1968994633430077440
The problem is that OCP 4.20 introduces NetworkPolicies in openshift namespaces, so the builds can't pull the UBI image.
A clean solution is to move the builds from OLM_NAMESPACE somewhere else, hence introducing a
ON_CLUSTER_BUILDS_NAMESPACE
env, defaulting toopenshift-serverless-builds
for this purpose.Proposed Changes