mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
10 lines
285 B
Bash
Executable File
10 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
|