Answers for "deploy helm chart using jenkins"

0

deploy helm chart using jenkins

pipeline {
    agent {
        docker { image 'your_image:1.0' }
    }
    stages {
        stage('Deploy') {
            steps {
                sh 'helm list'
            }
        }
    }
}
Posted by: Guest on January-28-2021

Browse Popular Code Answers by Language