a
test/pipeline/head Something is wrong with the build of this commit Details

main
onikolskyy 1 year ago
parent 306a9ffde5
commit a0919fb8dc

44
Jenkinsfile vendored

@ -1,48 +1,11 @@
pipeline {
agent {
kubernetes {
yaml """\
apiVersion: v1
kind: Pod
metadata:
name: 'jenkins-slave'
namespace: 'default'
spec:
containers:
- name: dind
image: "swr.eu-de.otc.t-systems.com/base-image/jenkins-dind"
imagePullPolicy: "IfNotPresent"
tty: true
command:
- "cat"
volumeMounts:
- mountPath: "/home/jenkins/agent"
name: "workspace-volume"
readOnly: false
env:
- name: PASS
valueFrom:
secretKeyRef:
name: docker-reg
key: pass
securityContext:
privileged: true
imagePullSecrets:
- name: default-secret
serviceAccountName: "jenkins-admin"
volumes:
- emptyDir:
medium: ""
name: "workspace-volume"
""".stripIndent()
}
label 'dind-agent'
}
stages {
stage('Build Docker Image') {
stage("build image") {
steps {
container('dind') {
script {
def image = "swr.eu-de.otc.t-systems.com/omnia-test/test-build:${env.BUILD_NUMBER}"
echo "FOO is ${env.BUILD_NUMBER}"
@ -58,4 +21,3 @@ pipeline {
}
}
}
}
Loading…
Cancel
Save