cicd-java-spring-boot/Jenkinsfile

118 lines
4.0 KiB
Plaintext
Raw Permalink Normal View History

2023-02-02 12:41:11 +00:00
import java.text.SimpleDateFormat
2023-02-01 11:07:00 +00:00
def label = "worker-${UUID.randomUUID().toString()}"
podTemplate(
2023-02-01 11:08:12 +00:00
label: label,
2023-02-01 11:07:00 +00:00
containers: [
containerTemplate(
name: 'gradle',
image: 'gradle:7.6.0-jdk11',
command: 'sleep',
args: '30d'
2023-02-01 11:17:55 +00:00
),
containerTemplate(
name: 'docker',
image: 'docker:latest',
command: 'cat',
ttyEnabled: true
),
containerTemplate(
name: 'kubectl',
image: 'bitnami/kubectl:latest',
command: 'cat',
ttyEnabled: true
),
containerTemplate(
name: 'helm',
image: 'alpine/helm:latest',
command: 'cat',
ttyEnabled: true
2023-02-01 09:17:31 +00:00
)
2023-02-01 11:07:00 +00:00
],
volumes: [
2023-02-01 11:17:55 +00:00
hostPathVolume(mountPath: '/home/gradle/.gradle', hostPath: '/tmp/jenkins/.gradle'),
hostPathVolume(mountPath: '/var/run/docker.sock', hostPath: '/var/run/docker.sock')
2023-02-01 11:07:00 +00:00
]
)
2023-02-01 14:44:31 +00:00
2023-02-01 11:07:00 +00:00
{
node(label) {
2023-02-02 12:41:11 +00:00
def dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS")
def date = new Date()
def BUILD_DATE = dateFormat.format(date)
2023-02-01 11:07:00 +00:00
def myRepo = checkout scm
def gitCommit = myRepo.GIT_COMMIT
def gitBranch = myRepo.GIT_BRANCH
def shortGitCommit = "${gitCommit[0..10]}"
def previousGitCommit = sh(script: "git rev-parse ${gitCommit}~", returnStdout: true)
2023-02-01 23:18:41 +00:00
def dockerRegistryUrl = "harbor.loafle.net"
2023-02-01 08:34:23 +00:00
2023-02-01 11:07:00 +00:00
stage('Test') {
try {
container('gradle') {
2023-02-01 23:47:29 +00:00
def projectName = sh(returnStdout: true, script: "gradle -q projectName").trim()
def projectVersion = sh(returnStdout: true, script: "gradle -q projectVersion").trim()
env.PROJECT_NAME = projectName
env.PROJECT_VERSION = projectVersion
2023-02-01 22:54:42 +00:00
sh """
pwd
echo "GIT_BRANCH=${gitBranch}" >> /etc/environment
echo "GIT_COMMIT=${gitCommit}" >> /etc/environment
gradle test
"""
2023-02-01 08:18:35 +00:00
}
}
2023-02-01 11:07:00 +00:00
catch (exc) {
println "Failed to test - ${currentBuild.fullDisplayName}"
throw(exc)
}
}
2023-02-01 14:11:40 +00:00
2023-02-01 11:07:00 +00:00
stage('Build') {
container('gradle') {
sh "gradle build"
}
2023-02-01 07:26:49 +00:00
}
2023-02-01 11:17:55 +00:00
2023-02-01 14:11:40 +00:00
stage('Create Docker images') {
container('docker') {
withCredentials([[$class: 'UsernamePasswordMultiBinding',
credentialsId: 'harbor.loafle.net',
usernameVariable: 'HARBOR_USER',
passwordVariable: 'HARBOR_PASSWORD']]) {
2023-02-02 12:15:12 +00:00
env.CONTAINER_IMAGE_NAME = "prototype/${env.PROJECT_NAME}"
2023-02-01 14:11:40 +00:00
sh """
2023-02-01 23:24:38 +00:00
docker login -u "${HARBOR_USER}" -p "${HARBOR_PASSWORD}" ${dockerRegistryUrl}
2023-02-02 12:01:07 +00:00
docker build -t ${dockerRegistryUrl}/${env.CONTAINER_IMAGE_NAME}:${env.PROJECT_VERSION} --build-arg PROJECT_NAME=${env.PROJECT_NAME} --build-arg PROJECT_VERSION=${env.PROJECT_VERSION} .
docker push ${dockerRegistryUrl}/${env.CONTAINER_IMAGE_NAME}:${env.PROJECT_VERSION}
2023-02-01 14:11:40 +00:00
"""
}
}
}
2023-02-02 12:01:07 +00:00
stage('Deploy Application on K8s') {
2023-02-02 13:20:36 +00:00
container('kubectl') {
2023-02-04 08:12:01 +00:00
withKubeConfig([credentialsId: 'loafle_net-kubeconfig']) {
sh 'kubectl get pods -n dev'
}
2023-02-06 13:18:59 +00:00
2023-02-04 08:12:01 +00:00
// withKubeConfig(kubectlCredentials: [[
// caCertificate: '',
// clusterName: 'microk8s',
// contextName: '',
// credentialsId: 'loafle_net-kubeconfig',
// namespace: 'kube-system',
// serverUrl: 'https://192.168.50.10:16443']]) {
2023-02-03 15:02:51 +00:00
2023-02-04 08:12:01 +00:00
// sh "kubectl config view"
// }
2023-02-03 15:02:51 +00:00
2023-02-02 12:01:07 +00:00
}
2023-02-03 15:02:51 +00:00
}
2023-01-31 13:42:28 +00:00
}
2023-02-01 09:48:49 +00:00
}