installer: rpuppy uses network configuration
diff --git a/core/installer/values-tmpl/rpuppy.jsonschema b/core/installer/values-tmpl/rpuppy.jsonschema
index 36619aa..5fa2fed 100644
--- a/core/installer/values-tmpl/rpuppy.jsonschema
+++ b/core/installer/values-tmpl/rpuppy.jsonschema
@@ -1,6 +1,16 @@
 {
+  "definitions": {
+    "network": {
+      "type": "object",
+      "properties": {
+        "name": { "type": "string" },
+        "domain": { "type": "string" }
+      }
+    }
+  },
   "type": "object",
   "properties": {
+    "Network": { "$ref": "#/definitions/network" },
     "Subdomain": { "type": "string", "default": "woof" }
   },
   "additionalProperties": false