cni network model changes
This commit is contained in:
parent
2b2c8bd02f
commit
16b7c0c578
@ -1,6 +1,8 @@
|
||||
.catalog:
|
||||
name: Chronos
|
||||
version: v1
|
||||
minimum_rancher_version: v1.0.0
|
||||
maximum_rancher_version: v1.2.0-pre3
|
||||
description: |
|
||||
Distributed, fault-tolerant cron
|
||||
questions:
|
||||
|
11
mesos-templates/chronos/1/docker-compose.yml
Normal file
11
mesos-templates/chronos/1/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
chronos:
|
||||
image: rancher/chronos:latest
|
||||
environment:
|
||||
ZK_SERVICE: mesos/zookeeper
|
||||
MESOS_SERVICE: mesos/mesos-master
|
||||
CHRONOS_HTTP_PORT: ${CHRONOS_HTTP_PORT}
|
||||
labels:
|
||||
io.rancher.container.hostname_override: container_name
|
||||
ports:
|
||||
- "${CHRONOS_HTTP_PORT}:${CHRONOS_HTTP_PORT}"
|
||||
privileged: true
|
22
mesos-templates/chronos/1/rancher-compose.yml
Normal file
22
mesos-templates/chronos/1/rancher-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
.catalog:
|
||||
name: Chronos
|
||||
version: v2
|
||||
minimum_rancher_version: v1.2.0-pre4-rc1
|
||||
description: |
|
||||
Distributed, fault-tolerant cron
|
||||
questions:
|
||||
- variable: CHRONOS_HTTP_PORT
|
||||
description: Port to expose Chronos on.
|
||||
label: Chronos Port
|
||||
required: true
|
||||
type: int
|
||||
default: 8080
|
||||
chronos:
|
||||
scale: 1
|
||||
health_check:
|
||||
port: ${CHRONOS_HTTP_PORT}
|
||||
interval: 3000
|
||||
unhealthy_threshold: 2
|
||||
healthy_threshold: 2
|
||||
request_line: '/'
|
||||
response_timeout: 2000
|
@ -1,7 +1,6 @@
|
||||
name: Chronos
|
||||
description: |
|
||||
Distributed, fault-tolerant cron replacement
|
||||
version: v1
|
||||
version: v2
|
||||
category: Frameworks
|
||||
maintainer: James Oliver <joliver@rancher.com>
|
||||
minimum_rancher_version: v1.0.0
|
||||
|
@ -1,6 +1,8 @@
|
||||
.catalog:
|
||||
name: Elasticsearch
|
||||
version: v1
|
||||
minimum_rancher_version: v1.0.0
|
||||
maximum_rancher_version: v1.2.0-pre3
|
||||
description: |
|
||||
You know, for search
|
||||
questions:
|
||||
|
13
mesos-templates/elasticsearch/1/docker-compose.yml
Normal file
13
mesos-templates/elasticsearch/1/docker-compose.yml
Normal file
@ -0,0 +1,13 @@
|
||||
scheduler:
|
||||
image: rancher/elasticsearch:latest
|
||||
environment:
|
||||
ZK_SERVICE: mesos/zookeeper
|
||||
MESOS_SERVICE: mesos/mesos-master
|
||||
SCHEDULER_PORT: ${SCHEDULER_PORT}
|
||||
JAVA_OPTS: -Xms256M -Xmx256M
|
||||
NODE_COUNT: ${NODE_COUNT}
|
||||
labels:
|
||||
io.rancher.container.hostname_override: container_name
|
||||
ports:
|
||||
- "${SCHEDULER_PORT}:${SCHEDULER_PORT}"
|
||||
privileged: true
|
28
mesos-templates/elasticsearch/1/rancher-compose.yml
Normal file
28
mesos-templates/elasticsearch/1/rancher-compose.yml
Normal file
@ -0,0 +1,28 @@
|
||||
.catalog:
|
||||
name: Elasticsearch
|
||||
version: v2
|
||||
minimum_rancher_version: v1.2.0-pre4-rc1
|
||||
description: |
|
||||
You know, for search
|
||||
questions:
|
||||
- variable: SCHEDULER_PORT
|
||||
description: Port to expose scheduler on.
|
||||
label: Scheduler Port
|
||||
required: true
|
||||
type: int
|
||||
default: 31100
|
||||
- variable: NODE_COUNT
|
||||
description: Number of Elasticsearch instances to run.
|
||||
label: Node Count
|
||||
required: true
|
||||
type: int
|
||||
default: 3
|
||||
scheduler:
|
||||
scale: 1
|
||||
health_check:
|
||||
port: ${SCHEDULER_PORT}
|
||||
interval: 3000
|
||||
unhealthy_threshold: 2
|
||||
healthy_threshold: 2
|
||||
request_line: '/'
|
||||
response_timeout: 2000
|
@ -1,7 +1,6 @@
|
||||
name: Elasticsearch
|
||||
description: |
|
||||
You know, for search
|
||||
version: v1
|
||||
version: v2
|
||||
category: Frameworks
|
||||
maintainer: James Oliver <joliver@rancher.com>
|
||||
minimum_rancher_version: v1.0.0
|
||||
|
@ -1,6 +1,8 @@
|
||||
.catalog:
|
||||
name: Kafka
|
||||
version: v1
|
||||
minimum_rancher_version: v1.0.0
|
||||
maximum_rancher_version: v1.2.0-pre3
|
||||
description: |
|
||||
A high-throughput distributed messaging system
|
||||
questions:
|
||||
|
11
mesos-templates/kafka/1/docker-compose.yml
Normal file
11
mesos-templates/kafka/1/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
scheduler:
|
||||
image: rancher/kafka:latest
|
||||
environment:
|
||||
ZK_SERVICE: mesos/zookeeper
|
||||
MESOS_SERVICE: mesos/mesos-master
|
||||
SCHEDULER_PORT: ${SCHEDULER_PORT}
|
||||
labels:
|
||||
io.rancher.container.hostname_override: container_name
|
||||
ports:
|
||||
- "${SCHEDULER_PORT}:${SCHEDULER_PORT}"
|
||||
privileged: true
|
21
mesos-templates/kafka/1/rancher-compose.yml
Normal file
21
mesos-templates/kafka/1/rancher-compose.yml
Normal file
@ -0,0 +1,21 @@
|
||||
.catalog:
|
||||
name: Kafka
|
||||
version: v2
|
||||
minimum_rancher_version: v1.2.0-pre4-rc1
|
||||
description: |
|
||||
A high-throughput distributed messaging system
|
||||
questions:
|
||||
- variable: SCHEDULER_PORT
|
||||
description: Port to expose Kafka Scheduler on.
|
||||
label: Scheduler Port
|
||||
required: true
|
||||
type: int
|
||||
default: 7000
|
||||
scheduler:
|
||||
health_check:
|
||||
port: ${SCHEDULER_PORT}
|
||||
interval: 3000
|
||||
unhealthy_threshold: 2
|
||||
healthy_threshold: 2
|
||||
request_line: '/health'
|
||||
response_timeout: 2000
|
@ -1,7 +1,6 @@
|
||||
name: Kafka
|
||||
description: |
|
||||
A high-throughput distributed messaging system
|
||||
version: v1
|
||||
version: v2
|
||||
category: Frameworks
|
||||
maintainer: James Oliver <joliver@rancher.com>
|
||||
minimum_rancher_version: v1.0.0
|
||||
|
@ -1,5 +1,7 @@
|
||||
.catalog:
|
||||
version: v1.1.0
|
||||
minimum_rancher_version: v1.0.0
|
||||
maximum_rancher_version: v1.2.0-pre3
|
||||
questions:
|
||||
- variable: MARATHON_HTTP_PORT
|
||||
description: Port to expose Marathon on.
|
||||
|
@ -4,8 +4,6 @@ marathon:
|
||||
ZK_SERVICE: Mesos/zookeeper
|
||||
MESOS_SERVICE: Mesos/mesos-master
|
||||
MARATHON_HTTP_PORT: ${MARATHON_HTTP_PORT}
|
||||
labels:
|
||||
io.rancher.container.hostname_override: container_name
|
||||
ports:
|
||||
- "${MARATHON_HTTP_PORT}:${MARATHON_HTTP_PORT}"
|
||||
privileged: true
|
||||
privileged: true
|
@ -1,5 +1,7 @@
|
||||
.catalog:
|
||||
version: v1.1.1
|
||||
minimum_rancher_version: v1.0.0
|
||||
maximum_rancher_version: v1.2.0-pre3
|
||||
questions:
|
||||
- variable: MARATHON_HTTP_PORT
|
||||
description: Port to expose Marathon on.
|
||||
|
11
mesos-templates/marathon/2/docker-compose.yml
Normal file
11
mesos-templates/marathon/2/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
marathon:
|
||||
image: rancher/marathon:v1.1.1
|
||||
environment:
|
||||
ZK_SERVICE: mesos/zookeeper
|
||||
MESOS_SERVICE: mesos/mesos-master
|
||||
MARATHON_HTTP_PORT: ${MARATHON_HTTP_PORT}
|
||||
labels:
|
||||
io.rancher.container.hostname_override: container_name
|
||||
ports:
|
||||
- "${MARATHON_HTTP_PORT}:${MARATHON_HTTP_PORT}"
|
||||
privileged: true
|
19
mesos-templates/marathon/2/rancher-compose.yml
Normal file
19
mesos-templates/marathon/2/rancher-compose.yml
Normal file
@ -0,0 +1,19 @@
|
||||
.catalog:
|
||||
version: v1.1.1-cni
|
||||
minimum_rancher_version: v1.2.0-pre4-rc1
|
||||
questions:
|
||||
- variable: MARATHON_HTTP_PORT
|
||||
description: Port to expose Marathon on.
|
||||
label: Marathon Port
|
||||
required: true
|
||||
type: int
|
||||
default: 8080
|
||||
marathon:
|
||||
scale: 1
|
||||
health_check:
|
||||
port: ${MARATHON_HTTP_PORT}
|
||||
interval: 3000
|
||||
unhealthy_threshold: 2
|
||||
healthy_threshold: 2
|
||||
request_line: '/'
|
||||
response_timeout: 2000
|
@ -1,7 +1,6 @@
|
||||
name: Marathon
|
||||
description: |
|
||||
A production-grade container orchestration platform
|
||||
version: v1.1.1
|
||||
version: v1.1.1-cni
|
||||
category: Frameworks
|
||||
maintainer: James Oliver <joliver@rancher.com>
|
||||
minimum_rancher_version: v1.0.0
|
Loading…
x
Reference in New Issue
Block a user