From 167fdcf7686609652f721d1ed8680ad79ae733ab Mon Sep 17 00:00:00 2001 From: AK Date: Sat, 23 Mar 2024 15:54:50 -0700 Subject: [PATCH] wrong file extension.. --- scripts/deploy_apps.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/deploy_apps.sh b/scripts/deploy_apps.sh index 5cfbd23..195c8ac 100644 --- a/scripts/deploy_apps.sh +++ b/scripts/deploy_apps.sh @@ -2,11 +2,9 @@ set -eu cd ./mindctrl-addon/rootfs/usr/bin/deploy -pwd -ls -la echo "using target registry $K3D_REGISTRY_URL" -envsubst < ./deployments.yml | kubectl apply -f - -envsubst < ./tracking.yml | kubectl apply -f - -envsubst < ./multiserver.yml | kubectl apply -f - +envsubst < deployments.yaml | kubectl apply -f - +envsubst < tracking.yaml | kubectl apply -f - +envsubst < multiserver.yaml | kubectl apply -f -