We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537b436 commit 73305eaCopy full SHA for 73305ea
scripts/install-olm.sh
@@ -21,9 +21,11 @@ else
21
echo "operator-sdk was found in the path, no need to install it"
22
fi
23
24
-# Install OLM
25
-operator-sdk olm uninstall
26
-operator-sdk olm install --version=v0.24.0
+curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.25.0/install.sh -o install.sh
+chmod +x install.sh
+./install.sh v0.25.0
27
+rm install.sh
28
+
29
# Wait for all OLM pods to be ready
30
kubectl wait --for=condition=ready pod --all=true -nolm --timeout="$TNF_DEPLOYMENT_TIMEOUT"
31
sleep 5
0 commit comments