9 lines
157 B
Bash
9 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eou
|
||
|
|
||
|
VERSION="5.3.1"
|
||
|
|
||
|
helm pull oci://registry.developers.crunchydata.com/crunchydata/pgo --version "$VERSION"
|
||
|
tar -xvf "pgo-$VERSION.tgz"
|