Initialize Dgraph schema before installing core services
diff --git a/dev/bootstrap_schema.sh b/dev/bootstrap_schema.sh
new file mode 100644
index 0000000..095669e
--- /dev/null
+++ b/dev/bootstrap_schema.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+kubectl -n dgraph port-forward svc/dgraph-alpha 8081:8080 &
+sleep 1
+curl -X POST http://localhost:8081/admin/schema -d 'enum EventState { NEW PROCESSING DONE } type Ignore { x: Int }'