adds icecast
This commit is contained in:
parent
0293b3e4d0
commit
743c7c65dd
35
build-icecast.jenkins
Normal file
35
build-icecast.jenkins
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
#!groovy
|
||||||
|
|
||||||
|
def repository = "registry.c.test-chamber-13.lan"
|
||||||
|
def repositoryCreds = "harbor-repository-creds"
|
||||||
|
|
||||||
|
def dockerFile = """FROM ${repository}/dockerhub/library/alpine:latest
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
|
||||||
|
|
||||||
|
RUN apk add --no-cache icecast && \
|
||||||
|
mkdir /icecast
|
||||||
|
"""
|
||||||
|
|
||||||
|
def label = "kubernetes-${UUID.randomUUID().toString()}"
|
||||||
|
def templateName = "pipeline-worker"
|
||||||
|
podTemplate(
|
||||||
|
label: label,
|
||||||
|
name: templateName,
|
||||||
|
yaml: functions.podYaml(
|
||||||
|
repo: repository,
|
||||||
|
templateName: templateName,
|
||||||
|
kaniko: true
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
node (label) {
|
||||||
|
def workspace = pwd()
|
||||||
|
|
||||||
|
functions.buildContainer(
|
||||||
|
repository: "registry.hub.docker.com",
|
||||||
|
imageDest: "registry.hub.docker.com/thespider/icecast:latest",
|
||||||
|
dockerFile: dockerFile,
|
||||||
|
repoCreds: "dockerhub-repository-creds",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user