1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
pipeline { agent { kubernetes { yamlFile 'fedora.yaml' } } stages { stage('Run shell') { steps { container('fedora') { sh 'cat /etc/os-release' } } } } }