Jenkinsfile hinzugefügt

This commit is contained in:
2025-03-10 23:44:52 +00:00
parent e557ef320c
commit 79cf2bfaa7
Vendored
+21
View File
@@ -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'
}
}
}
}