adds blocks
This commit is contained in:
parent
e710f9e5e1
commit
863cf1b3e4
@ -17,7 +17,8 @@ pipeline {
|
|||||||
yaml functions.podYaml(
|
yaml functions.podYaml(
|
||||||
repo: repository,
|
repo: repository,
|
||||||
templateName: templateName,
|
templateName: templateName,
|
||||||
kaniko: true
|
kaniko: true,
|
||||||
|
alpine: true
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -56,6 +57,10 @@ ENTRYPOINT ["/bin/bash", "-c", "/home/steam/ProjectZomboid/start-server.sh"]
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage ('Build & Push') {
|
||||||
|
steps {
|
||||||
|
container ('kaniko') {
|
||||||
|
script {
|
||||||
declarativeFunctions.buildContainer(
|
declarativeFunctions.buildContainer(
|
||||||
repository: repository,
|
repository: repository,
|
||||||
imageDest: "${repository}/library/project-zomboid:latest",
|
imageDest: "${repository}/library/project-zomboid:latest",
|
||||||
@ -65,7 +70,15 @@ ENTRYPOINT ["/bin/bash", "-c", "/home/steam/ProjectZomboid/start-server.sh"]
|
|||||||
"STEAM_TOKEN=${steamToken}",
|
"STEAM_TOKEN=${steamToken}",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ('Delete Running Container') {
|
||||||
|
steps {
|
||||||
|
container ('alpine') {
|
||||||
|
script {
|
||||||
declarativeFunctions.functions.deletePod(
|
declarativeFunctions.functions.deletePod(
|
||||||
kubeAuth: "k8s-game-servers-access",
|
kubeAuth: "k8s-game-servers-access",
|
||||||
kubeURL: "https://k8s.test-chamber-13.lan:8043",
|
kubeURL: "https://k8s.test-chamber-13.lan:8043",
|
||||||
@ -73,4 +86,8 @@ ENTRYPOINT ["/bin/bash", "-c", "/home/steam/ProjectZomboid/start-server.sh"]
|
|||||||
selector: "app=project-zomboid"
|
selector: "app=project-zomboid"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user