13 KiB
Linux.com Kubernetes CI/CD Blog Series by Kenzan
The kubernetes-ci-cd project is Kenzan's crossword puzzle application that runs as several containers in Kubernetes (we call it the Kr8sswordz Puzzle). It showcases Kubernetes features like spinning up multiple pods and running a load test at scale. It also features Jenkins running on its own a container and a JenkinsFile script to demonstrate how Kubernetes can be integrated into a full CI/CD pipeline.
To get it up and running, see the following week-by-week Linux.com blog posts, or simply follow the directions below.
To generate this readme: node readme.js
Interactive Tutorial Version
To complete the tutorial using the interactive script:
-
Clone this repository.
-
To ensure you are starting with a clean slate:
minikube delete; sudo rm -rf ~/.minikube; sudo rm -rf ~/.kube
-
To run:
npm install
Begin the desired section:
-
npm run part1
-
npm run part2
-
npm run part3
-
npm run part4
Manual Tutorial Version
To complete the tutorial manually, follow the steps below.
Part 1
Step1
Start up the Kubernetes cluster with Minikube, giving it some extra resources.
minikube start --memory 8000 --cpus 2 --kubernetes-version v1.6.0
Step2
Enable the Minikube add-ons Heapster and Ingress.
minikube addons enable heapster; minikube addons enable ingress
Step3
Wait 20 seconds, and then view the Minikube Dashboard, a web UI for managing deployments.
sleep 20; minikube service kubernetes-dashboard --namespace kube-system
Step4
Deploy the public nginx image from DockerHub into a pod. Nginx is an open source web server that will automatically download from Docker Hub if it’s not available locally.
kubectl run nginx --image nginx --port 80
Step5
Create a service for deployment. This will expose the nginx pod so you can access it with a web browser.
kubectl expose deployment nginx --type NodePort --port 80
Step6
Launch a web browser to test the service. The nginx welcome page displays, which means the service is up and running.
minikube service nginx
Step7
Set up the cluster registry by applying a .yml manifest file.
kubectl apply -f manifests/registry.yml
Step8
Wait for the registry to finish deploying. Note that this may take several minutes.
kubectl rollout status deployments/registry
Step9
View the registry user interface in a web browser.
minikube service registry-ui
Step10
Let’s make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor (for example, you can use nano by running the command 'nano applications/hello-kenzan/index.html' in a separate terminal). Change some text inside one of the
tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. Save the file.
echo ''
Step11
Now let’s build an image, giving it a special name that points to our local cluster registry.
docker build -t 127.0.0.1:30400/hello-kenzan:latest -f applications/hello-kenzan/Dockerfile applications/hello-kenzan
Step12
We’ve built the image, but before we can push it to the registry, we need to set up a temporary proxy. By default the Docker client can only push to HTTP (not HTTPS) via localhost. To work around this, we’ll set up a container that listens on 127.0.0.1:30400 and forwards to our cluster.
docker stop socat-registry; docker rm socat-registry; docker run -d -e "REGIP=
minikube ip" --name socat-registry -p 30400:5000 chadmoon/socat:latest bash -c "socat TCP4-LISTEN:5000,fork,reuseaddr TCP4:
minikube ip:30400"
Step13
With our proxy container up and running, we can now push our image to the local repository.
docker push 127.0.0.1:30400/hello-kenzan:latest
Step14
The proxy’s work is done, so you can go ahead and stop it.
docker stop socat-registry;
Step15
With the image in our cluster registry, the last thing to do is apply the manifest to create and deploy the hello-kenzan pod based on the image.
kubectl apply -f applications/hello-kenzan/k8s/deployment.yaml
Step16
Launch a web browser and view the service.
minikube service hello-kenzan
Part 2
Step1
Install Jenkins, which we’ll use to create our automated CI/CD pipeline. It will take the pod a minute or two to roll out.
kubectl apply -f manifests/jenkins.yml; kubectl rollout status deployment/jenkins
Step2
Open the Jenkins UI in a web browser.
minikube service jenkins
Step3
Display the Jenkins admin password with the following command, and right-click to copy it. IMPORTANT: BE CAREFUL NOT TO PRESS CTRL-C TO COPY THE PASSWORD AS THIS WILL STOP THE SCRIPT.
kubectl exec -it
kubectl get pods --selector=app=jenkins --output=jsonpath={.items..metadata.name} cat /root/.jenkins/secrets/initialAdminPassword
Step4
Switch back to the Jenkins UI. Paste the Jenkins admin password in the box and click Continue. Click Install suggested plugins and wait for the process to complete.
echo ''
Step5
Create an admin user and credentials, and click Save and Finish. (Make sure to remember these credentials as you will need them for repeated logins.) Click Start using Jenkins.
echo ''
Step6
We now want to create a new pipeline for use with our Hello-Kenzan app. On the left, click New Item. Enter the item name as "Hello-Kenzan Pipeline", select Pipeline, and click OK.
echo ''
Step7
Under the Pipeline section at the bottom, change the Definition to be "Pipeline script from SCM".
echo ''
Step8
Change the SCM to Git.
echo ''
Step9
Change the Repository URL to be the URL of your forked Git repository, such as https://github.com/[GIT USERNAME]/kubernetes-ci-cd. Click Save. On the left, click Build Now to run the new pipeline.
echo ''
Step10
Now view the Hello-Kenzan application.
minikube service hello-kenzan
Step11
Push a change to your fork. Run job again. View the changes.
minikube service hello-kenzan
Part 3
Step1
Start the etcd operator and service on the cluster. You may notice errors showing up as it is waiting to start up the cluster. This is normal until it starts.
scripts/etcd.sh
Step2
Now that we have an etcd service, we need an etcd client. The following command will set up a directory within etcd for storing key-value pairs, and then run the etcd client.
kubectl create -f manifests/etcd-job.yml
Step3
Check the status of the job in step 2 to make sure it deployed.
kubectl describe jobs/etcd-job
Step4
The crossword application is a multi-tier application whose services depend on each other. We will create three services in Kubernetes ahead of time, so that the deployments are aware of them.
kubectl apply -f manifests/all-services.yml
Step5
Now we're going to walk through an initial build of the monitor-scale service.
docker build -t 127.0.0.1:30400/monitor-scale:
git rev-parse --short HEAD -f applications/monitor-scale/Dockerfile applications/monitor-scale
Step6
Set up a proxy so we can push the monitor-scale Docker image we just built to our cluster's registry.
docker stop socat-registry; docker rm socat-registry; docker run -d -e "REGIP=
minikube ip" --name socat-registry -p 30400:5000 chadmoon/socat:latest bash -c "socat TCP4-LISTEN:5000,fork,reuseaddr TCP4:
minikube ip:30400"
Step7
Push the monitor-scale image to the registry.
docker push 127.0.0.1:30400/monitor-scale:
git rev-parse --short HEAD``
Step8
The proxy’s work is done, so go ahead and stop it.
docker stop socat-registry
Step9
Open the registry UI and verify that the monitor-scale image is in our local registry.
minikube service registry-ui
Step10
Create the monitor-scale deployment and service.
sed 's#127.0.0.1:30400/monitor-scale:latest#127.0.0.1:30400/monitor-scale:'
git rev-parse --short HEAD'#' applications/monitor-scale/k8s/deployment.yaml | kubectl apply -f -
Step11
Wait for the monitor-scale deployment to finish.
kubectl rollout status deployment/monitor-scale
Step12
View pods to see the monitor-scale pod running.
kubectl get pods
Step13
View services to see the monitor-scale service.
kubectl get services
Step14
View ingress rules to see the monitor-scale ingress rule.
kubectl get ingress
Step15
View deployments to see the monitor-scale deployment.
kubectl get deployments
Step16
We will run a script to bootstrap the puzzle and mongo services, creating Docker images and storing them in the local registry. The puzzle.sh script runs through the same build, proxy, push, and deploy steps we just ran through manually for both services.
scripts/puzzle.sh
Step17
Check to see if the puzzle and mongo services have been deployed.
kubectl rollout status deployment/puzzle
Step18
Bootstrap the kr8sswordz frontend web application. This script follows the same build proxy, push, and deploy steps that the other services followed.
scripts/kr8sswordz-pages.sh
Step19
Check to see if the frontend has been deployed.
kubectl rollout status deployment/kr8sswordz
Step20
Check out all the pods that are running.
kubectl get pods
Step21
Start the web application in your default browser. You may have to refresh your browser so that the puzzle appears properly.
minikube service kr8sswordz
Part 4
Step1
Enter the following command to open the Jenkins UI in a web browser. Log in to Jenkins using the username and password you previously set up.
minikube service jenkins
Step2
We’ll want to create a new pipeline for the puzzle service that we previously deployed. On the left in Jenkins, click New Item.
echo ''
Step3
Enter the item name as "Puzzle-Service", click Pipeline, and click OK.
echo ''
Step4
Under the Build Triggers section, select Poll SCM. For the Schedule, enter the the string H/5 * * * * which will poll the Git repo every 5 minutes for changes.
echo ''
Step5
In the Pipeline section, change the Definition to "Pipeline script from SCM". Set the SCM property to GIT. Set the Repository URL to your forked repo (created in Part 2), such as https://github.com/[GIT USERNAME]/kubernetes-ci-cd.git. Set the Script Path to applications/puzzle/Jenkinsfile
echo ''
Step6
When you are finished, click Save. On the left, click Build Now to run the new pipeline. You should see it successfully run through the build, push, and deploy steps in a few minutes.
echo ''
Step7
View the Kr8sswordz application.
minikube service kr8sswordz
Step8
Spin up several instances of the puzzle service by moving the slider to the right and clicking Scale. For reference, click on the Submit button, noting that the green hit does not register on the puzzle services.
echo ''
Step9
Edit applications/puzzle/common/models/crossword.js in your favorite text editor (for example, you can use nano by running the command 'nano applications/puzzle/common/models/crossword.js' in a separate terminal). You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes and save the file.
echo ''
Step10
Commit and push the change to your forked Git repo.
echo ''
Step11
In Jenkins, open up the Puzzle-Service pipeline and wait until it triggers a build. It should trigger every 5 minutes.
echo ''
Step12
After it triggers, observe how the puzzle services disappear in the Kr8sswordz Puzzle app, and how new ones take their place.
echo ''
Step13
Try clicking Submit to test that hits now register as light green.
echo ''
LICENSE
Copyright 2017 Kenzan, LLC http://kenzan.com
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.