7816e69e38
* Building the OLM bundle * kustomize the main CRD for the OLM bundle * minor fixes
9 lines
285 B
Bash
Executable file
9 lines
285 B
Bash
Executable file
#! /bin/bash
|
|
set -euxo pipefail
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Delete the default catalog if it exists
|
|
sh -c "kubectl delete catalogsources operatorhubio-catalog -n olm | true"
|
|
|
|
kubectl apply -f $SCRIPT_DIR/../olm/testing-resources
|