missing config items

Change-Id: Iaa9fa5b77b4ff957599d25b51acf894a8e57179f
diff --git a/build.gradle b/build.gradle
index ae02221..d27c237 100644
--- a/build.gradle
+++ b/build.gradle
@@ -92,6 +92,8 @@
                     'componentDir': './apps/config'
             ]
     ]
+
+    deployConfig = project.hasProperty('deployConfig') ? project.getProperty('deployConfig') : './config/default.yml'
 }
 
 
@@ -168,7 +170,7 @@
 }
 
 task deploy (dependsOn: publishMavenRepoImage, type: Exec) {
-     println "Using deployment config: $deployConfig"
+    println "Using deployment config: $deployConfig"
     File configFile = new File(deployConfig)
     def yaml = new Yaml()
     def config = yaml.load(configFile.newReader())
diff --git a/config/default.yml b/config/default.yml
new file mode 100644
index 0000000..3dc13f1
--- /dev/null
+++ b/config/default.yml
@@ -0,0 +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.
+---
+seedServer:
+  ip: '10.100.198.201'
+
+  # 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'