From b2aa6341e7299fcf8352ebdb21a1fe1e70d117e5 Mon Sep 17 00:00:00 2001 From: OhSeongRak Date: Tue, 17 Jun 2025 11:32:12 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Jenkinsfile=20-=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smarketing-ai/deployment/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/smarketing-ai/deployment/Jenkinsfile b/smarketing-ai/deployment/Jenkinsfile index 4896d33..a37349e 100644 --- a/smarketing-ai/deployment/Jenkinsfile +++ b/smarketing-ai/deployment/Jenkinsfile @@ -132,19 +132,19 @@ podTemplate( export azure_storage_account_key=\$AZURE_STORAGE_ACCOUNT_KEY # manifest 생성 - envsubst < deployment/${manifest}.template > deployment/${manifest} + envsubst < smarketing-ai/deployment/${manifest}.template > smarketing-ai/deployment/${manifest} echo "Generated manifest file:" - cat deployment/${manifest} + cat smarketing-ai/deployment/${manifest} """ } } container('azure-cli') { sh """ - kubectl apply -f deployment/${manifest} + kubectl apply -f smarketing-ai/deployment/${manifest} echo "Waiting for smarketing deployment to be ready..." - kubectl -n ${namespace} wait --for=condition=available deployment/smarketing --timeout=300s + kubectl -n ${namespace} wait --for=condition=available smarketing-ai/deployment/smarketing --timeout=300s echo "==========================================" echo "Getting LoadBalancer External IP..."