binding issues with multiple web services

We are running a continuous integration server with the following software: Windows Server 2012 (AWS EC2 Instance) TeamCity 9.0.3 Youtrack 6.0 Collabnet Subversion Edge 4.0.14-4110.144 Octopus Deploy 2.6.5.1010 All software is up-to-date version wise. Appropriate firewall exceptions are in place. When we installed Octopus, we are able to access the Web Portal site on the … Read more

How to configure jenkins on ec2 to run whenever there’s a new build in my project repository

I wanna set a jenkins CI for the first time in a linux EC2 (I’m working from windows). My jobs are in maven. The thing is: how do I set jenkins to detect whenever there’s a new build in my remote ec2 repo, how do I connect them both? I tried to look up online … Read more

How to manage publishing maven settings.xml with artifact repository, mirror and proxy details to CI servers?

Is there an automated process I can rely on, as an organisation’s artifact repository / proxy manager, to publish configuration updates to dependent continous integration servers and developers? For instance, if for some reason, I have to create or move a repository / proxy URL, is there any way to update Jenkins or TeamCity or … Read more

Linux host configuration for continuous deployment?

We are in the process of setting up a host for continuous deployment. Each application runs under its own user account. Currently the approach we are looking at is simply allowing the continuous build machine to have publickey to that application’s account for purpose of deployment. There is concern that this may create a vulnerability, … Read more

dockerized jenkins failed building dockerfile work dir issue

I have a jenkins container and a pipeline which consist of building docker images. I have mounted the necessary mounts (/var/run/docker.sock, /var/run) for jenkins to use docker commands. I also bind mounted a folder from my host to jenkins as its workspace directory (/var/jenkins_home/workspace). Here is the Dockerfile which is part of my project: FROM … Read more

Gitlab Runner installation Docker in Docker

Alright, so I am trying to install, register and successfully use a Gitlab Runner as a container in docker with the executor docker, basically docker in docker. I had some problems with it but was able to solve them on my own. I am running gitlab-ce in another container under the same host but this … Read more

Deploy containerize project using Jenkins and Ansible

I have project running using several docker containers. Now I want to automate deployment using Jenkins (push triggers). I have three scenarios but I like none of them. here are these three different scenarios: 1) I deploy changes on server, then on server I run docker-compose build, to recreate potentially changed images and then run … Read more

Jenkins failing to load in linux Centos

Configured Jenkins, tried to change the port to: 5555 as 8080 is used by tomcat apache. Edited: vim /etc/sysconfig/jenkins and updated JENKINS_LISTEN_ADDRESS=”0.0.0.0″ AND JENKINS_ARGS=”0.0.0.0″ Restarted the jenkins Server: sudo service jenkins restart Error: This site can’t be reached ipaddress took too long to respond. Try: Checking the connection Checking the proxy and the firewall ERR_CONNECTION_TIMED_OUT … Read more

Cannot connect GitLab to GKE Cluster

I am trying to create a CI Pipeline for my GitLab project to deploy my microservices automatically on a Google Kubernetes Engine cluster. Sadly I am unable to use the build-In native Google Cloud Integration from GitLab as it isn’t properly configured, so I have to do it the manual way. I am following this … Read more