Last active
April 20, 2021 12:49
-
-
Save radu-matei/376f5a2b042b0df82d7d905c9c6cf8ff to your computer and use it in GitHub Desktop.
Jenkinsfile-k8s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
podTemplate(label: 'mypod', containers: [ | |
containerTemplate(name: 'docker', image: 'docker', ttyEnabled: true, command: 'cat'), | |
containerTemplate(name: 'kubectl', image: 'lachlanevenson/k8s-kubectl:v1.8.0', command: 'cat', ttyEnabled: true), | |
containerTemplate(name: 'helm', image: 'lachlanevenson/k8s-helm:latest', command: 'cat', ttyEnabled: true) | |
], | |
volumes: [ | |
hostPathVolume(mountPath: '/var/run/docker.sock', hostPath: '/var/run/docker.sock'), | |
]) { | |
node('mypod') { | |
stage('do some Docker work') { | |
container('docker') { | |
withCredentials([[$class: 'UsernamePasswordMultiBinding', | |
credentialsId: 'dockerhub', | |
usernameVariable: 'DOCKER_HUB_USER', | |
passwordVariable: 'DOCKER_HUB_PASSWORD']]) { | |
sh """ | |
docker pull ubuntu | |
docker tag ubuntu ${env.DOCKER_HUB_USER}/ubuntu:${env.BUILD_NUMBER} | |
""" | |
sh "docker login -u ${env.DOCKER_HUB_USER} -p ${env.DOCKER_HUB_PASSWORD} " | |
sh "docker push ${env.DOCKER_HUB_USER}/ubuntu:${env.BUILD_NUMBER} " | |
} | |
} | |
} | |
stage('do some kubectl work') { | |
container('kubectl') { | |
withCredentials([[$class: 'UsernamePasswordMultiBinding', | |
credentialsId: 'dockerhub', | |
usernameVariable: 'DOCKER_HUB_USER', | |
passwordVariable: 'DOCKER_HUB_PASSWORD']]) { | |
sh "kubectl get nodes" | |
} | |
} | |
} | |
stage('do some helm work') { | |
container('helm') { | |
sh "helm ls" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment