85 lines
2.5 KiB
Groovy
85 lines
2.5 KiB
Groovy
#!groovy
|
|
|
|
def repository = "registry.c.test-chamber-13.lan"
|
|
def repositoryCreds = "harbor-repository-creds"
|
|
|
|
def dockerFile = """
|
|
FROM ${repository}/library/alpine:latest
|
|
|
|
RUN apk add --no-cache openssl && \\
|
|
addgroup -g 1000 -S vlmcsd && \\
|
|
adduser -u 1000 -G vlmcsd -S -D -h /home/vlmcsd vlmcsd
|
|
|
|
COPY vlmcsd/bin/vlmcsd vlmcsd/etc/vlmcsd.kmd /home/vlmcsd
|
|
|
|
EXPOSE 1688/tcp
|
|
|
|
WORKDIR /home/vlmcsd
|
|
|
|
HEALTHCHECK --interval=1m --timeout=3s --start-period=10s --retries=3 \
|
|
CMD /bin/sh -c 'printf \\'\\n\\' | openssl s_client --connect 127.0.0.1:1688 2> /dev/null | grep \\'CONNECTED\\''
|
|
|
|
ENTRYPOINT ["/bin/sh", "-c", "./vlmcsd -L 0.0.0.0:1688 -m 5 -t 5 -e -N1 -B1 -r1 -C 1033 -R 1w -A 1h -H 36446 -v -D -j ./vlmcsd.kmd"]
|
|
"""
|
|
|
|
def label = "kubernetes-${UUID.randomUUID().toString()}"
|
|
def templateName = "pipeline-worker"
|
|
podTemplate (
|
|
label: label,
|
|
name: templateName,
|
|
yaml: functions.podYaml(
|
|
repo: repository,
|
|
templateName: templateName,
|
|
kaniko: true,
|
|
alpine: true
|
|
)
|
|
){
|
|
node (label) {
|
|
stage ("Pull VLMCSD Source") {
|
|
dir("vlmcsd") {
|
|
checkout ([
|
|
$class: "GitSCM",
|
|
branches: [
|
|
[
|
|
name: "refs/heads/master",
|
|
],
|
|
],
|
|
userRemoteConfigs: [
|
|
[
|
|
url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/vlmcsd-source.git",
|
|
credentialsId: "Gitea-Read-Only-Token",
|
|
],
|
|
],
|
|
extensions: [
|
|
[
|
|
$class: "CloneOption",
|
|
shallow: true,
|
|
],
|
|
[
|
|
$class: "CheckoutOption",
|
|
timeout: 2,
|
|
],
|
|
],
|
|
])
|
|
}
|
|
}
|
|
|
|
container ("alpine") {
|
|
stage ("Build VLMCSD") {
|
|
sh """
|
|
apk --no-cache add gcc make musl-dev git
|
|
cd "${workspace}/vlmcsd"
|
|
make
|
|
"""
|
|
}
|
|
}
|
|
|
|
functions.buildContainer(
|
|
repository: repository,
|
|
imageDest: "${repository}/library/vlmcsd:latest",
|
|
dockerFile: dockerFile,
|
|
repoCreds: repositoryCreds,
|
|
)
|
|
}
|
|
}
|