From 79cf2bfaa7c4fbb67e62ae121d7e748bc97fea1b Mon Sep 17 00:00:00 2001 From: matthias Date: Mon, 10 Mar 2025 23:44:52 +0000 Subject: [PATCH] =?UTF-8?q?Jenkinsfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..fd8f596 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + stages { + stage('Buildo Roboto') { + agent { + kubernetes { + defaultContainer 'kaniko' + yamlFile 'kaniko.yaml' + } + } + steps { + /* + * Since we're in a different pod than the rest of the + * stages, we'll need to grab our source tree since we don't + * have a shared workspace with the other pod(s).. + */ + checkout scm + sh 'sh -c ./scripts/build-kaniko.sh' + } + } + } +} \ No newline at end of file