From 76863fbd36b2700a8b328b9812694f333ec75ed2 Mon Sep 17 00:00:00 2001 From: Mikita Tsybulka Date: Sun, 7 Sep 2025 20:05:34 +0200 Subject: [PATCH] [fixed] path in apply_test script --- k8s/apply_test.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/k8s/apply_test.sh b/k8s/apply_test.sh index 37c8a5bc..a3708c21 100644 --- a/k8s/apply_test.sh +++ b/k8s/apply_test.sh @@ -2,16 +2,16 @@ # --- apply configmaps and secrets --- kubectl apply -f test-env/configmap.yaml -n test -kubectl apply -f test-env/secret.yaml -n test +kubectl apply -f base/secret.yaml -n test # --- apply deployments --- -kubectl apply -f test-env/frontend/frontend-deployment.yaml -n test -kubectl apply -f test-env/logicway/logicway-deployment.yaml -n test -kubectl apply -f test-env/postgres/postgres-deployment.yaml -n test -kubectl apply -f test-env/route-engine/route-engine-deployment.yaml -n test +kubectl apply -f base/frontend/frontend-deployment.yaml -n test +kubectl apply -f base/logicway/logicway-deployment.yaml -n test +kubectl apply -f base/postgres/postgres-deployment.yaml -n test +kubectl apply -f base/route-engine/route-engine-deployment.yaml -n test # --- apply services --- kubectl apply -f test-env/services/ -n test # --- apply jobs --- -kubectl apply -f test-env/logicway/job-load-data.yaml -n test \ No newline at end of file +kubectl apply -f base/logicway/job-load-data.yaml -n test \ No newline at end of file