From b96348b59f189887e37b44a49f94add241c68d7e Mon Sep 17 00:00:00 2001 From: beppevanrolleghem Date: Wed, 15 Apr 2020 12:37:59 +0200 Subject: [PATCH] Use correct namespace for environment --- Jenkinsfile | 2 +- Makefile | 2 +- jenkins-x.yml | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100755 jenkins-x.yml diff --git a/Jenkinsfile b/Jenkinsfile index ea7fbdf..21fbe6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { label "jenkins-maven" } environment { - DEPLOY_NAMESPACE = "change-me" + DEPLOY_NAMESPACE = "jx-production" } stages { stage('Validate Environment') { diff --git a/Makefile b/Makefile index ca8fdef..2e7fc58 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CHART_REPO := http://jenkins-x-chartmuseum:8080 DIR := "env" -NAMESPACE := "change-me" +NAMESPACE := "jx-production" OS := $(shell uname) build: clean diff --git a/jenkins-x.yml b/jenkins-x.yml new file mode 100755 index 0000000..6a2d962 --- /dev/null +++ b/jenkins-x.yml @@ -0,0 +1,8 @@ +env: +- name: DEPLOY_NAMESPACE + value: jx-production +pipelineConfig: + env: + - name: DEPLOY_NAMESPACE + value: jx-production + pipelines: {}