Created
October 17, 2024 03:53
-
-
Save initcron/e87857066a1202ef2e11e8ca6f0779ee to your computer and use it in GitHub Desktop.
Jenkinsfile Snippet to Smoke Test Kubetnetes Agent Configuration
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 {} | |
} | |
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