apt_prefs_dir = "/etc/apt/apt.conf.d"
 apt_prefs = "95silent-approval"
 helm_timeout = "900"
+helm_master_password = "vagrant"
 
 vm_memory = 1 * 1024
 vm_memory_os = 4 * 1024
   export $(cat "$ENV" | xargs)
 
   TIMEOUT="${3:-#{helm_timeout}}"
+  MASTER_PASSWORD="${4:-#{helm_master_password}}"
 
   encrypt () {
     KEY="${HOME}/oom/kubernetes/so/resources/config/mso/encryption.key"
 
   export KUBECONFIG="${HOME}/.kube/config.onap"
 
-  helm deploy core local/onap --namespace onap -f "$OVERRIDE" --verbose --timeout "$TIMEOUT"
+  helm deploy core local/onap --verbose \
+    --set global.masterPassword="$MASTER_PASSWORD" \
+    --namespace onap --timeout "$TIMEOUT" -f "$OVERRIDE"
 SCRIPT
 
 Vagrant.configure('2') do |config|