moaves to new registry

This commit is contained in:
Hyatt 2020-07-12 16:44:37 -05:00
parent e26c8e567d
commit 34d4ebe926
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -2,10 +2,11 @@
def nodeLabel = "${UUID.randomUUID().toString()}" def nodeLabel = "${UUID.randomUUID().toString()}"
// Kaniko Image // Kaniko Image
def kanikoImage = "gcr.io/kaniko-project/executor:debug" def kanikoImage = "registry.test-chamber-13.lan:5000/nhyatt/kaniko:latest"
def repositoryCreds = "quay-repository-creds"
// Repository Locations // Repository Locations
def pushRepo = "registry.test-chamber-13.lan:5000" def pushRepo = "registry.test-chamber-13.lan:5000/nhyatt"
def pushImage = "minecraft" def pushImage = "minecraft"
def pushTag = "latest" def pushTag = "latest"
@ -42,6 +43,28 @@ spec:
// Set working directory // Set working directory
def workspace = pwd() def workspace = pwd()
stage ("Prepare Kaniko") {
container ("kaniko") {
withCredentials([usernameColonPassword(
credentialsId: repositoryCreds,
variable: "dCreds",
)]) {
def dockerJSON = """{
"auths": {
"registry.test-chamber-13.lan:5000": {
"auth": "${dcreds.bytes.encodeBase64().toString()}"
}
}
}"""
sh """
set +x
echo '${dockerJSON}' > /kaniko/.docker/config.json
set -x
"""
}
}
}
stage ("Pre-Build") { stage ("Pre-Build") {
def dockerFile = """ def dockerFile = """
FROM ${baseImage}:${baseImageTag} FROM ${baseImage}:${baseImageTag}
@ -70,7 +93,7 @@ CMD cd data; java -Xms${memoryMin} -Xmx${memoryMax} -jar ../paper-mc.jar
stage ("Build & Push") { stage ("Build & Push") {
container ("kaniko") { container ("kaniko") {
sh "/kaniko/executor --cleanup --insecure --skip-tls-verify --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/${pushImage}:${pushTag}\"" sh "/kaniko/executor --cleanup --context \"${workspace}\" -f \"${workspace}/Dockerfile\" --destination \"${pushRepo}/${pushImage}:${pushTag}\""
} }
} }
} }