attempts to build api as well
This commit is contained in:
parent
84ebae8a29
commit
7db46dfbea
93
Jenkinsfile
vendored
93
Jenkinsfile
vendored
@ -1,8 +1,7 @@
|
|||||||
def label = "jenkins-${UUID.randomUUID().toString()}"
|
def label = "jenkins-${UUID.randomUUID().toString()}"
|
||||||
|
|
||||||
def repository = "registry.c.test-chamber-13.lan"
|
def repository = "registry.c.test-chamber-13.lan"
|
||||||
|
def repositoryCreds = "harbor-repository-creds"
|
||||||
def tag = "0.76"
|
|
||||||
|
|
||||||
podTemplate(
|
podTemplate(
|
||||||
label: label,
|
label: label,
|
||||||
@ -14,6 +13,12 @@ metadata:
|
|||||||
name: pipeline-worker
|
name: pipeline-worker
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
|
- name: kaniko
|
||||||
|
imagePullPolicy: Always
|
||||||
|
image: ${repository}/library/kaniko:latest
|
||||||
|
tty: true
|
||||||
|
command:
|
||||||
|
- /busybox/sh
|
||||||
- name: compile
|
- name: compile
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
image: ${repository}/dockerhub/library/golang:latest
|
image: ${repository}/dockerhub/library/golang:latest
|
||||||
@ -51,14 +56,14 @@ spec:
|
|||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("Build Putty") {
|
stage("Build tplinkcmd") {
|
||||||
container("compile") {
|
container("compile") {
|
||||||
sh """
|
sh """
|
||||||
apt update
|
apt update
|
||||||
apt install upx -y
|
apt install upx -y
|
||||||
go install -v ./...
|
go install -v ./...
|
||||||
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/tpstate
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/tpstate
|
||||||
upx --brute tplink
|
upx --lzma tplink
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -70,5 +75,85 @@ spec:
|
|||||||
onlyIfSuccessful: true,
|
onlyIfSuccessful: true,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
container ("kaniko") {
|
||||||
|
stage ("Prepare Kaniko") {
|
||||||
|
withCredentials([usernameColonPassword(
|
||||||
|
credentialsId: repositoryCreds,
|
||||||
|
variable: "dCreds",
|
||||||
|
)]) {
|
||||||
|
def dockerJSON = """{
|
||||||
|
"auths": {
|
||||||
|
"${repository}": {
|
||||||
|
"auth": "${dcreds.bytes.encodeBase64().toString()}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"""
|
||||||
|
sh """
|
||||||
|
set +x
|
||||||
|
echo '${dockerJSON}' > /kaniko/.docker/config.json
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ("Build Container") {
|
||||||
|
def DF = """
|
||||||
|
FROM ${repository}/library/alpine:latest as certHost
|
||||||
|
|
||||||
|
FROM ${repository}/dockerhub/library/golang:alpine as builder
|
||||||
|
|
||||||
|
COPY . /go/src/app
|
||||||
|
|
||||||
|
WORKDIR /go/src/app
|
||||||
|
|
||||||
|
RUN apk add --no-cache git upx && \\
|
||||||
|
addgroup -S -g 1000 app && \\
|
||||||
|
adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\
|
||||||
|
go get -d -v ./... && \\
|
||||||
|
go install -v ./... && \\
|
||||||
|
GOOG=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o app ./cmd/tpapi && \\
|
||||||
|
upx --lzma --ultra-brute app
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
COPY --from=certHost /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||||
|
COPY --from=builder /etc/passwd /etc/group /etc/
|
||||||
|
COPY --from=builder --chown=app:app /go/src/app/app /app/app
|
||||||
|
|
||||||
|
USER app:app
|
||||||
|
WORKDIR /app/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/app/app"]
|
||||||
|
"""
|
||||||
|
writeFile(file: workspace + "/Dockerfile", text: DF)
|
||||||
|
sh """
|
||||||
|
/kaniko/executor \\
|
||||||
|
--cleanup \\
|
||||||
|
--context "${workspace}" \\
|
||||||
|
-f "${workspace}/Dockerfile" \\
|
||||||
|
--destination "${repository}/library/the-spider:latest"
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ("Update Deployment") {
|
||||||
|
container ("alpine") {
|
||||||
|
sh """
|
||||||
|
apk add --no-cache curl
|
||||||
|
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
|
||||||
|
chmod +x /usr/local/bin/kubectl
|
||||||
|
"""
|
||||||
|
|
||||||
|
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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user