diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000000000000000000000000000000..32392cdfe97cdb2a93db2f96ac5b592863c3d32a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,22 @@ +pipeline { + environment { + BRANCH_TO_DEPLOY = "master" + } + agent none + stages { + stage('Deploy') { + agent { + label 'docker' + } + when { + branch "${BRANCH_TO_DEPLOY}" + } + steps { + withCredentials() { + // Just get helm3 for testing + sh 'wget https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz.sha256' + } + } + } + } +} \ No newline at end of file