Skip to content

Commit 73305ea

Browse files
authored
Install OLM from source (#295)
1 parent 537b436 commit 73305ea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/install-olm.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ else
2121
echo "operator-sdk was found in the path, no need to install it"
2222
fi
2323

24-
# Install OLM
25-
operator-sdk olm uninstall
26-
operator-sdk olm install --version=v0.24.0
24+
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.25.0/install.sh -o install.sh
25+
chmod +x install.sh
26+
./install.sh v0.25.0
27+
rm install.sh
28+
2729
# Wait for all OLM pods to be ready
2830
kubectl wait --for=condition=ready pod --all=true -nolm --timeout="$TNF_DEPLOYMENT_TIMEOUT"
2931
sleep 5

0 commit comments

Comments
 (0)