Skip to content

Commit

Permalink
Enable wildcard evaluation and spaces in VENDOR_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
spgreenberg authored and kieron-dev committed Feb 8, 2023
1 parent b4bf49d commit a50ead5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ echo "************************************"
echo " Installing Service Binding Runtime"
echo "************************************"

kubectl apply -f $VENDOR_DIR/service-binding/servicebinding-runtime-v*.yaml
kubectl apply -f "$VENDOR_DIR/service-binding/servicebinding-runtime-v"*".yaml"
kubectl -n servicebinding-system rollout status deployment/servicebinding-controller-manager --watch=true
kubectl apply -f $VENDOR_DIR/service-binding/servicebinding-workloadresourcemappings-v*.yaml
kubectl apply -f "$VENDOR_DIR/service-binding/servicebinding-workloadresourcemappings-v"*".yaml"

if ! kubectl get apiservice v1beta1.metrics.k8s.io >/dev/null 2>&1; then
if [[ -v INSECURE_TLS_METRICS_SERVER ]]; then
Expand Down

0 comments on commit a50ead5

Please sign in to comment.