Skip to content

Instantly share code, notes, and snippets.

@initcron
Created October 17, 2024 03:53
Show Gist options
  • Save initcron/e87857066a1202ef2e11e8ca6f0779ee to your computer and use it in GitHub Desktop.
Save initcron/e87857066a1202ef2e11e8ca6f0779ee to your computer and use it in GitHub Desktop.
Jenkinsfile Snippet to Smoke Test Kubetnetes Agent Configuration
pipeline {
agent {
kubernetes {}
}
stages {
stage('Test') {
steps {
sh 'echo Hello from Kubernetes Agent!'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment