summarylogtreecommitdiffstats
path: root/aurora-env.sh
diff options
context:
space:
mode:
Diffstat (limited to 'aurora-env.sh')
-rw-r--r--aurora-env.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/aurora-env.sh b/aurora-env.sh
new file mode 100644
index 000000000000..61e745cb6e16
--- /dev/null
+++ b/aurora-env.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+AURORA_HOME=/usr/lib/apache-aurora
+
+# Flags controlling the JVM.
+JAVA_OPTS=(
+ -Xmx2g
+ -Xms2g
+ # GC tuning, etc.
+)
+
+# Flags controlling the scheduler.
+AURORA_FLAGS=(
+ # Port for client RPCs and the web UI
+ -http_port=8081
+ # Log configuration, etc.
+)
+
+# Environment variables controlling libmesos
+export JAVA_HOME=...
+export GLOG_v=1
+# Port and public ip used to communicate with the Mesos master and for the replicated log
+export LIBPROCESS_PORT=8083
+export LIBPROCESS_IP=192.168.33.7