From 3362b6e25e063ba5549d4a145cd34ff389e853f2 Mon Sep 17 00:00:00 2001 From: andrewso <9V5f1FkzI2LD> Date: Sat, 22 Feb 2020 23:47:04 +0000 Subject: [PATCH] [22.02.20] Main file not found testing --- configuration/kubernetes/deployment.yaml | 2 +- configuration/pipelines/build.groovy | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration/kubernetes/deployment.yaml b/configuration/kubernetes/deployment.yaml index 4ba59b8..2d3dd7f 100644 --- a/configuration/kubernetes/deployment.yaml +++ b/configuration/kubernetes/deployment.yaml @@ -6,7 +6,7 @@ metadata: name: RESOURCE_NAME namespace: default spec: - replicas: 1 + replicas: 0 selector: matchLabels: app: RESOURCE_NAME diff --git a/configuration/pipelines/build.groovy b/configuration/pipelines/build.groovy index ef7af65..7970c1b 100644 --- a/configuration/pipelines/build.groovy +++ b/configuration/pipelines/build.groovy @@ -89,6 +89,8 @@ try { } stage('Deploy') { + sh "ls -la" + executeShellScript("configuration/scripts/deployToKubernetes.sh", env.APPLICATION_NAME) }