summarylogtreecommitdiffstats
path: root/aurora-env.sh
diff options
context:
space:
mode:
authorHaralds2017-03-02 02:20:23 +0000
committerHaralds2017-03-02 02:20:23 +0000
commitd438813c861f105507ae620ce1e752b28080e3d8 (patch)
tree7a7688501876992958effaee7bc543d5b3fee995 /aurora-env.sh
downloadaur-d438813c861f105507ae620ce1e752b28080e3d8.tar.gz
initial commit
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