Upgrade zookeeper and traefik packages (#185)

* Upgrade zookeeper to version 3.4.8

* Updated traefik version to v1.0.0. Added new features: ssl, multidomain, import key/cert from metadata, run as traefik user.

* Upgrade kafka to version 0.10.0

* Updated traefik version to v1.0.1. ssl key and crt set as required.

* Updated traefik version to v1.0.1. ssl working modes available.
This commit is contained in:
Raúl Sánchez
2016-07-26 18:37:38 +02:00
committed by Bill Maxwell
parent 2881ae2839
commit e8f86f188b
14 changed files with 454 additions and 7 deletions
+4 -1
View File
@@ -1,7 +1,9 @@
traefik:
ports:
- ${admin_port}:${admin_port}/tcp
- ${http_port}:${http_port}/tcp
- ${https_port}:${https_port}/tcp
log_driver: ''
labels:
io.rancher.scheduler.global: 'true'
@@ -11,9 +13,10 @@ traefik:
io.rancher.container.hostname_override: container_name
tty: true
log_opt: {}
image: rawmind/alpine-traefik:1.0.0-beta.555-6
image: rawmind/alpine-traefik:1.0.0-beta.771
environment:
- TRAEFIK_HTTP_PORT=${http_port}
- TRAEFIK_HTTPS_PORT=${https_port}
- TRAEFIK_ADMIN_PORT=${admin_port}
- CONF_INTERVAL=${refresh_interval}
volumes_from:
+14 -1
View File
@@ -13,20 +13,33 @@
required: true
default: 8080
type: "int"
- variable: "https_port"
description: "Traefik https public port to listen."
label: "Https port:"
required: true
default: 8443
type: "int"
- variable: "admin_port"
description: "Traefik admin public port to listen."
label: "Admin port:"
required: true
default: 8000
type: "string"
type: "int"
- variable: "refresh_interval"
description: "Interval to poll/apply configuration changes."
label: "Refresh Interval (s):"
required: true
default: 60
type: "int"
- variable: "ssl_cert"
description: "SSL certificate"
label: "SSL certificate:"
required: false
default: ""
type: "certificate"
traefik:
retain_ip: true
default_cert: ${ssl_cert}
health_check:
port: ${admin_port}
interval: 5000