Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colemickens/e0195074ac3457861e4e13a8436af41c to your computer and use it in GitHub Desktop.
Save colemickens/e0195074ac3457861e4e13a8436af41c to your computer and use it in GitHub Desktop.
pipeline {
agent {
kubernetes {
cloud 'kubernetes'
label 'bootkube-test'
containerTemplate {
name 'default'
image 'ubuntu:xenial'
ttyEnabled true
command 'cat'
}
containerTemplate {
name 'golang'
image 'golang:1.10'
ttyEnabled true
command 'cat'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment