DooD (Docker-outside-of-Docker) Sometimes you have a need to use docker inside of a docker container. A good example of this is using a container to build an artifact then using docker inside that container to build an image from that artifact. The typical way of doing this is mouting the docker sock from the host…
Configuration with Kubernetes and Jenkins Part 2: ConfigMaps
In part 2 of configuring Kubernetes with Jenkins Pipeline, I will focus on the ConfigMap Resource. ConfigMaps are key/value configurations that are external to your…
Configuration with Kubernetes and Jenkins Part 1: Secrets
In this post, I will walk through how to configure Kubernetes Secrets through your Jenkins Pipeline. I’ll assume you already know how to create a…