Provides a docker image of the golang runtime for use as a Jenkins agent.
docker build -t jenkins-agent-golang .
For local running and experimentation run docker run -i -t jenkins-agent-golang /bin/bash and have a play once inside the container.
oc process -f ../../.openshift/templates/jenkins-agent-generic-template.yml \
-p NAME=jenkins-agent-golang \
-p SOURCE_CONTEXT_DIR=jenkins-agents/jenkins-agent-golang \
| oc create -f -For all params see the list in the ../../.openshift/templates/jenkins-agent-generic-template.yml or run oc process --parameters -f ../../.openshift/templates/jenkins-agent-generic-template.yml.
Add a new Kubernetes Container template called jenkins-agent-golang (if you've build and pushed the container image locally) and specify this as the node when running builds. If you're using the template attached; the role: jenkins-agent is attached and Jenkins should automatically discover the agent for you. Further instructions can be found here. There are path issues with Jenkins permissions and Go when trying to run a build so easiest way to fix this is to setup the GOLANG path to be same as the WORKSPACE
export GOPATH=${WORKSPACE}
go get -v -t ./...
go build -v
# if there are Ginkgo tests then also run this!
$GOPATH/bin/ginkgo -r --cover -keepGoing