-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.yaml
64 lines (53 loc) · 1.71 KB
/
run.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
runtime: java
config_set:
################################################################
### This is one configuration set (feel free to rename it). ###
################################################################
myconfig1:
# REQUIRED
# Fully classified name of the main class.
# Example value: main.Hello
main: /main.scala.CustomApplication
# OPTIONAL
# A list of paths where classes and other resources can be found.
# By default, the unikernel root "/" is added to the classpath.
# Example value: classpath:
# - /
# - /src
classpath:
- /
# OPTIONAL
# Initial and maximum JVM memory size.
# Example value: xms: 512m
# xms: <value>
# xmx: <value>
# OPTIONAL
# A list of JVM args.
# Example value: jvm_args:
# - -Djava.net.preferIPv4Stack=true
# - -Dhadoop.log.dir=/hdfs/logs
jvm_args:
# -
# OPTIONAL
# A list of command line args used by the application.
# Example value: args:
# - argument1
# - argument2
args:
# - <list>
# OPTIONAL
# Environment variables.
# A map of environment variables to be set when unikernel is run.
# Example value: env:
# PORT: 8000
# HOSTNAME: www.myserver.org
env:PORT: 8080
# <key>: <value>
# OPTIONAL
# Configuration to contextualize.
#base: "<package-name>:<config_set>"
# Add as many named configurations as you need
# OPTIONAL
# What config_set should be used as default.
# This value can be overwritten with --runconfig argument.
config_set_default: myconfig1