Git Product home page Git Product logo

jenkins's Introduction

Jenkins CI/CD for Kubernetes

This jenkins is tailored for building and deploying docker images to kubernetes clusters.

Run with Docker Compose

docker-compose up --build

Deploy to Kubernetes

1. Create service account

kubectl apply -f clusterRole.yaml
kubectl apply -f clusterRoleBinding.yaml
kubectl apply -f serviceAccount.yaml

2. Create secret with service account credentials

# find token with 'kubectl get secret'
MY_JENKINS_TOKEN=jenkins-token-abcd
KUBE_CA = kubectl get secret ${MY_JENKINS_TOKEN} -o jsonpath='{.data.ca\.crt}'
KUBE_TOKEN = kubectl get secret ${MY_JENKINS_TOKEN} -o jsonpath='{.data.token}' | base64 --decode
echo "apiVersion: v1
kind: Secret
metadata:
  name: jenkins-env
type: Opaque
stringData:
  KUBE_CA: '${KUBE_CA}'
  KUBE_TOKEN: '${KUBE_TOKEN}'" > secret.yaml

3. Deploy Jenkins

kubectl apply -f secret.yaml
kubectl apply -f deployment.yaml
kubectl apply -f service.yaml
kubectl apply -f ingress.yaml
kubectl apply -f certificate.yaml

Backup Jenkins

JENKINS_POD_NAME=jenkins-7f6bd5fbc4-hndh2
kubectl exec -it ${JENKINS_POD_NAME} -- /bin/bash
cd /var/jenkins_home/
tar -czf /tmp/jenkins_home.tar.gz .
kubectl cp ${JENKINS_POD_NAME}:tmp/jenkins_home.tar.gz ./jenkins_home.tar.gz

Restore Jenkins

JENKINS_POD_NAME=jenkins-7f6bd5fbc4-hndh2
kubectl cp ./jenkins_home.tar.gz ${JENKINS_POD_NAME}:tmp/
kubectl exec -it ${JENKINS_POD_NAME} -- /bin/bash
cd /tmp/
tar -xf jenkins_home.tar.gz -C /var/jenkins_home/

jenkins's People

Contributors

kristianwindsor avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.