Created
July 18, 2018 12:58
-
-
Save tigran10/19b40d01c13763be9ecd6e250c63a768 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent { | |
kubernetes { | |
label 'mypod' | |
defaultContainer 'jnlp' | |
yaml """ | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
labels: | |
some-label: some-label-value | |
spec: | |
containers: | |
- name: maven | |
image: maven:alpine | |
command: | |
- cat | |
tty: true | |
- name: busybox | |
image: busybox | |
command: | |
- cat | |
tty: true | |
""" | |
} | |
} | |
stages { | |
stage('env') { | |
steps { | |
sh 'env' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment