updated maas to lastest master and updated config to include values used by maas
Change-Id: I78daf46af470c255a30272691c1887174169fd27
diff --git a/components/maas b/components/maas
index fc8b18e..9bb1595 160000
--- a/components/maas
+++ b/components/maas
@@ -1 +1 @@
-Subproject commit fc8b18e379186e727bfb182d750579294f23a4ec
+Subproject commit 9bb15959aae951036ba6db7c6419abd44ea423e6
diff --git a/config/default.yml b/config/default.yml
index 70945c3..349a42e 100644
--- a/config/default.yml
+++ b/config/default.yml
@@ -1,8 +1,35 @@
+# Deployment configuration for VirtualBox based head node.
+#
+# This deployment configuration can be utilized with the head node created
+# via `vargrant up headnode` from the gerrit.opencord.org/maas repository.
---
-
-size: 2
-
seedServer:
ip: '10.100.198.202'
-otherServers: []
+ # User name and password used by Ansible to connect to the host for remote
+ # provisioning
+ user: 'vagrant'
+ password: 'vagrant'
+
+ # Specifies tasks within the head node provisioning not to execute, including:
+ #
+ # switch_support - don't download the switch ONL images as there are no
+ # switches in this configuration
+ # interface_config - don't update the network configuration of the headnode
+ # as it is configured by vagrant to the proper settings
+ skipTags:
+ - 'switch_support'
+ - 'interface_config'
+
+ # Specifies the extra settings required for this configuration
+ #
+ # virtualbox_support - install support for managing virtual box based
+ # compute nodes
+ extraVars:
+ - 'virtualbox_support=1'
+
+otherServers:
+ # Specifies the configuration for dynamically added compute nodes
+ location: 'http://gerrit.opencord.org/maas'
+ rolesPath: 'roles'
+ role: 'compute-node'