From 0a288b19714cc33780926065e11130d737b7b319 Mon Sep 17 00:00:00 2001 From: subodh Date: Sat, 14 Feb 2026 06:13:12 +0000 Subject: [PATCH] updated jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73c10da..30201f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,13 +1,13 @@ pipeline { agent { - label 'build-agent' // This matches the label you configured + label 'jenkins-build-agent' } environment { - HARBOR_URL = 'harbor.myriadcara.com' // Fixed your URL - HARBOR_PROJECT = 'my-todo-app' + HARBOR_URL = 'harbor.myriadcara.com' + HARBOR_PROJECT = 'todo-app' HARBOR_CREDS = 'harbor-credentials-id' - K8S_CREDENTIALS_ID = 'k8s-kubeconfig' + K8S_CREDENTIALS_ID = 'kubeconfig' IMAGE_TAG = "${env.BUILD_ID}" }