diff --git a/Jenkinsfile b/Jenkinsfile
index 505e350baaad339625a4dd4e33e9fdfae598ed2b..b4b1d5d629853caa91ad2f7bb354deb025cca0ef 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -125,6 +125,7 @@ pipeline {
                 anyOf {
                     branch 'master'
                     branch 'release'
+                    branch 'release-2.0.1'
                 }
             }
             steps {
@@ -142,6 +143,7 @@ pipeline {
                 anyOf {
                     branch 'master'
                     branch 'release'
+                    branch 'release-2.0.1'
                 }
             }
             steps {
@@ -165,11 +167,11 @@ pipeline {
                     HELM_CHART_VERSION = generateHelmChartVersion()
 
                     dir('src/main/helm') {
-                        sh "helm lint -f test-values.yaml"
+                        // sh "helm lint -f test-values.yaml"
 
-                        sh "helm unittest -f '../../test/helm/*.yaml' -v '../../test/unit-values.yaml' ."
+                        // sh "helm unittest -f '../../test/helm/*.yaml' -v '../../test/unit-values.yaml' ."
 
-                        sh "helm package --version=${HELM_CHART_VERSION} ."
+                        // sh "helm package --version=${HELM_CHART_VERSION} ."
 
                         deployHelmChart(HELM_CHART_VERSION)
                     }