This is an automated email from the ASF dual-hosted git repository.

tsato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 3c3a30277dd292ef2cf77ccb64ffe767daaf7ccb
Author: Tadayoshi Sato <[email protected]>
AuthorDate: Tue Jul 5 01:00:30 2022 +0900

    fix(e2e): upgrade olm to 0.21.2
    
    Since OLM 0.19.0 the max total size of bundle is increased from ~1MB to
    ~4MB and now the bloated Camel K Operator bundle requires >1.3MB, so
    upgrading OLM to >= 0.19.0 is necessary.
    https://groups.google.com/g/operator-framework/c/79UO6oGwuTs
---
 .github/actions/kamel-config-cluster/action.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/kamel-config-cluster/action.yaml 
b/.github/actions/kamel-config-cluster/action.yaml
index 4f7dda95b..f58327aad 100644
--- a/.github/actions/kamel-config-cluster/action.yaml
+++ b/.github/actions/kamel-config-cluster/action.yaml
@@ -158,10 +158,10 @@ runs:
         if [ $? != 0 ]; then
           set -e
           echo "OLM not detected on cluster so downloading and installing"
-          kubectl apply -f 
https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/crds.yaml
+          kubectl create -f 
https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.21.2/crds.yaml
           # wait for a while to be sure CRDs are installed
           sleep 1
-          kubectl apply -f 
https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/olm.yaml
+          kubectl create -f 
https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.21.2/olm.yaml
         fi
         set -e
 

Reply via email to