Jenkinsfile aktualisiert

This commit is contained in:
dresi 2025-11-05 10:45:36 +01:00
parent c432e3ac80
commit 8431c95324

16
Jenkinsfile vendored
View File

@ -1,7 +1,21 @@
pipeline {
agent {
kubernetes {
inheritFrom 'default'
yaml '''
apiVersion: v1
kind: Pod
metadata:
labels:
some-label: some-label-value
spec:
containers:
- name: dind
image: docker:dind
command:
- cat
tty: true
'''
retries 2
}
}
stages {