2022-04-08 08:22:01 +00:00
|
|
|
#! /bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
mkdir -p /tmp/olm/
|
2024-07-26 10:38:06 +00:00
|
|
|
curl -f -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.26.0/install.sh -o /tmp/olm/install.sh
|
2022-04-08 08:22:01 +00:00
|
|
|
chmod +x /tmp/olm/install.sh
|
2024-02-09 11:08:02 +00:00
|
|
|
/tmp/olm/install.sh v0.26.0
|