Re: Jenkins and HA

2017-12-05 Thread Walter Heestermans
gt;> >>> you can't do this way, two masters sharing same JENKINS_HOME would >>> override each other configuration on disk. Jenkins is designed as a >>> single-instance server. >>> >>> 2017-12-05 8:30 GMT+01:00 Walter Heestermans <walter.he...@gmail.co

Re: Jenkins and HA

2017-12-05 Thread Walter Heestermans
enkins is designed as a > single-instance server. > > 2017-12-05 8:30 GMT+01:00 Walter Heestermans <walter.he...@gmail.com > >: > >> Hi, >> >> How can setup HA with Jenkins OpenSource? I have now one master running >> and two agents, can I just add a second m

Jenkins and HA

2017-12-04 Thread Walter Heestermans
Hi, How can setup HA with Jenkins OpenSource? I have now one master running and two agents, can I just add a second master and put an LB in front of it. The Jenkins home of my current master is on shared file system. Regards walter -- You received this message because you are subscribed to

Jenkins test pipeline docker build + push

2017-11-29 Thread Walter Heestermans
Hi, I'm new in Jenkins and trying to run a pipeline to get source from github, build docker image, test docker image and push image to local docker repository. node { def app stage('Clone repository') { checkout scm } stage('Build image') { app =

Docker push local repository

2017-11-29 Thread Walter Heestermans
Hi, I'm new in Jenkins and executing a simple pipeline to get source from github, build image, test image and then push to local DTR node { def app stage('Clone repository') { checkout scm } stage('Build image') { app = docker.build("test/hellonode") }