Created
March 18, 2018 04:23
-
-
Save arobson/b380955454ae1b88df27daed1a47f6a5 to your computer and use it in GitHub Desktop.
es-spec.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = "elasticsearch.infra" | |
image = "elasticsearch:5.5.1-alpine" | |
stateful = true | |
[scale] | |
containers = 1 | |
ram = "> 256 Mi < 1024 Mi" | |
cpu = "> 1% < 100%" | |
[env] | |
NETWORK_HOST = "0.0.0.0" | |
ES_JAVA_OPTS="-Xms256m -Xmx1g" | |
[ports] | |
primary = "9200" | |
secondary = "9300" | |
[mount] | |
es-data = "/usr/share/elasticsearch/data" | |
es-config = "/etc/elasticsearch/config" | |
[volumes] | |
es-config = "es-config::jvm.options" | |
[storage] | |
es-data = "20Gi:exclusive" | |
[service] | |
alias = "es" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment