updates to new format and adds sonar-scan
This commit is contained in:
parent
bfa88364af
commit
6e182091b1
197
Jenkinsfile
vendored
197
Jenkinsfile
vendored
@ -1,69 +1,84 @@
|
|||||||
def label = "jenkins-${UUID.randomUUID().toString()}"
|
|
||||||
|
#!groovy
|
||||||
|
|
||||||
def repository = "registry.c.test-chamber-13.lan"
|
def repository = "registry.c.test-chamber-13.lan"
|
||||||
def repositoryCreds = "harbor-repository-creds"
|
def repositoryCreds = "harbor-repository-creds"
|
||||||
|
|
||||||
|
def label = "kubernetes-${UUID.randomUUID().toString()}"
|
||||||
|
def templateName = "pipeline-worker"
|
||||||
|
|
||||||
podTemplate(
|
podTemplate(
|
||||||
label: label,
|
label: label,
|
||||||
name: "pipeline-worker",
|
name: templateName,
|
||||||
yaml: """---
|
yaml: functions.podYaml(
|
||||||
apiVersion: v1
|
repo: repository,
|
||||||
kind: Pod
|
templateName: templateName,
|
||||||
metadata:
|
kaniko: true,
|
||||||
name: pipeline-worker
|
alpine: true,
|
||||||
spec:
|
[
|
||||||
containers:
|
[
|
||||||
- name: kaniko
|
name: "sonar",
|
||||||
imagePullPolicy: Always
|
path: "${repository}/library/sonarscanner:latest",
|
||||||
image: ${repository}/library/kaniko:latest
|
command: "/bin/sh"
|
||||||
tty: true
|
],
|
||||||
command:
|
[
|
||||||
- /busybox/sh
|
name: "golang",
|
||||||
- name: compile
|
path: "${repository}/dockerhub/library/golang:alpine",
|
||||||
imagePullPolicy: Always
|
command: "/bin/sh"
|
||||||
image: ${repository}/dockerhub/library/golang:latest
|
]
|
||||||
tty: true
|
]
|
||||||
command:
|
)
|
||||||
- /bin/sh
|
) {
|
||||||
- name: alpine
|
|
||||||
image: ${repository}/library/alpine:latest
|
|
||||||
imagePullPolicy: Always
|
|
||||||
tty: true
|
|
||||||
command:
|
|
||||||
- /bin/sh
|
|
||||||
""") {
|
|
||||||
node (label) {
|
node (label) {
|
||||||
def workspace = pwd()
|
def workspace = pwd()
|
||||||
|
|
||||||
stage ("Pull Local Repo") {
|
stage('Clone Repository') {
|
||||||
checkout([
|
checkout ([$class: "GitSCM",
|
||||||
$class: "GitSCM",
|
branches: scm.branches,
|
||||||
branches: [
|
extensions: scm.extensions + [$class: 'CloneOption', shallow: true],
|
||||||
[
|
userRemoteConfigs: scm.userRemoteConfigs,
|
||||||
name: "refs/remotes/origin/main",
|
|
||||||
],
|
|
||||||
],
|
|
||||||
userRemoteConfigs: [
|
|
||||||
[
|
|
||||||
url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/tplinkcmd.git",
|
|
||||||
credentialsId: "Gitea-Read-Only-Token",
|
|
||||||
],
|
|
||||||
],
|
|
||||||
extensions: [
|
|
||||||
[
|
|
||||||
$class: "CloneOption",
|
|
||||||
shallow: true,
|
|
||||||
],
|
|
||||||
[
|
|
||||||
$class: "CheckoutOption",
|
|
||||||
timeout: 2,
|
|
||||||
],
|
|
||||||
],
|
|
||||||
])
|
])
|
||||||
|
shortCommit = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Run Tests') {
|
||||||
|
container('golang') {
|
||||||
|
sh """
|
||||||
|
curl --silent --location https://nexus.c.test-chamber-13.lan/repository/github-releases/jstemmer/go-junit-report/releases/download/v1.0.0/go-junit-report-v1.0.0-linux-amd64.tar.gz | tar -z -x -f - -C /usr/local/bin
|
||||||
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
||||||
|
cd "/go/src/${env.JOB_BASE_NAME}"
|
||||||
|
go get -d -v ./...
|
||||||
|
go install -v ./...
|
||||||
|
go test -short -coverprofile=cover.out `go list ./...`
|
||||||
|
go test -v 2>&1 | go-junit-report > report.xml
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Prepare SonarScanner') {
|
||||||
|
def sonarScannerConfig = """
|
||||||
|
sonar.projectKey=emonesp-exporter
|
||||||
|
sonar.projectVersion=${shortCommit}
|
||||||
|
sonar.sources=.
|
||||||
|
sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/*
|
||||||
|
sonar.tests=.
|
||||||
|
sonar.test.inclusions=**/*_test.go
|
||||||
|
sonar.test.exclusions=**/vendor/**
|
||||||
|
sonar.go.coverage.reportPaths=cover.out
|
||||||
|
"""
|
||||||
|
writeFile file: 'sonar-project.properties', text: sonarScannerConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('SonarQube Analysis') {
|
||||||
|
container('sonar') {
|
||||||
|
withSonarQubeEnv('SonarQube') {
|
||||||
|
sh "sonar-scanner --define sonar.host.url=https://sonar.c.test-chamber-13.lan"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("Build tplinkcmd") {
|
stage("Build tplinkcmd") {
|
||||||
container("compile") {
|
container("golang") {
|
||||||
sh """
|
sh """
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install upx -y
|
apt-get install upx -y
|
||||||
@ -82,28 +97,19 @@ spec:
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
container ("kaniko") {
|
stage ('Push Artifacts') {
|
||||||
stage ("Prepare Kaniko") {
|
container('alpine') {
|
||||||
withCredentials([usernameColonPassword(
|
functions.pushArtifact(
|
||||||
credentialsId: repositoryCreds,
|
repoCreds: "nexus-generic-upload-bot",
|
||||||
variable: "dCreds",
|
fileName: "tplink",
|
||||||
)]) {
|
filePath: workspace + "/",
|
||||||
def dockerJSON = """{
|
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/go/"
|
||||||
"auths": {
|
)
|
||||||
"${repository}": {
|
|
||||||
"auth": "${dcreds.bytes.encodeBase64().toString()}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}"""
|
|
||||||
sh """
|
|
||||||
set +x
|
|
||||||
echo '${dockerJSON}' > /kaniko/.docker/config.json
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage ("Build Container") {
|
stage ("Build Container") {
|
||||||
def DF = """
|
def DF = """
|
||||||
FROM ${repository}/library/alpine:latest as certHost
|
FROM ${repository}/library/alpine:latest as certHost
|
||||||
|
|
||||||
FROM ${repository}/dockerhub/library/golang:alpine as builder
|
FROM ${repository}/dockerhub/library/golang:alpine as builder
|
||||||
@ -131,35 +137,30 @@ WORKDIR /app/
|
|||||||
|
|
||||||
ENTRYPOINT ["/app/app"]
|
ENTRYPOINT ["/app/app"]
|
||||||
"""
|
"""
|
||||||
writeFile(file: workspace + "/Dockerfile", text: DF)
|
writeFile(file: workspace + "/Dockerfile", text: DF)
|
||||||
sh """
|
sh """
|
||||||
/kaniko/executor \\
|
/kaniko/executor \\
|
||||||
--cleanup \\
|
--cleanup \\
|
||||||
--context "${workspace}" \\
|
--context "${workspace}" \\
|
||||||
-f "${workspace}/Dockerfile" \\
|
-f "${workspace}/Dockerfile" \\
|
||||||
--destination "${repository}/library/tplink-api:latest"
|
--destination "${repository}/library/tplink-api:latest"
|
||||||
"""
|
"""
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stage ("Update Deployment") {
|
stage('Delete Running Pod') {
|
||||||
container ("alpine") {
|
functions.deletePod(
|
||||||
sh """
|
kubeAuth: "k8s-monitoring-access",
|
||||||
apk add --no-cache curl
|
kubeURL: "https://kubernetes.test-chamber-13.lan:6443",
|
||||||
curl -L --silent https://storage.googleapis.com/kubernetes-release/release/\$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl
|
namespace: "monitoring",
|
||||||
chmod +x /usr/local/bin/kubectl
|
selector: "app=emonesp-exporter"
|
||||||
"""
|
)
|
||||||
|
|
||||||
withKubeConfig([
|
|
||||||
credentialsId: "rancher-admin-token",
|
|
||||||
serverUrl: "https://rancher.test-chamber-13.lan/k8s/clusters/c-mc9cq",
|
|
||||||
namespace: "webservers"
|
|
||||||
]) {
|
|
||||||
sh "for i in \$(kubectl get pods --selector app=\"tplink-api\" -o name); do kubectl delete \${i}; done"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Submit Testing Report to Jenkins') {
|
||||||
|
catchError{
|
||||||
|
junit 'report.xml'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user