pipeline { agent { kubernetes { label 'helm' } } environment { } stages { stage('Retrieve build secrets') { steps { container('chart-testing') { chart_test.sh --no-install --all } } } } }