Allow custom kopf and kibana public ports (#178)
* Allow custom kopf and kibana public ports * kopf public port is now required * kibana public port is now required
This commit is contained in:
parent
b6af78417a
commit
3ccd9033cc
@ -98,7 +98,7 @@ elasticsearch-base-clients:
|
|||||||
kopf:
|
kopf:
|
||||||
image: rancher/kopf:v0.4.0
|
image: rancher/kopf:v0.4.0
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "${kopf_port}:80"
|
||||||
environment:
|
environment:
|
||||||
KOPF_SERVER_NAME: 'es.dev'
|
KOPF_SERVER_NAME: 'es.dev'
|
||||||
KOPF_ES_SERVERS: 'es-clients:9200'
|
KOPF_ES_SERVERS: 'es-clients:9200'
|
||||||
|
@ -9,6 +9,12 @@
|
|||||||
type: "string"
|
type: "string"
|
||||||
required: true
|
required: true
|
||||||
default: "es"
|
default: "es"
|
||||||
|
- variable: "kopf_port"
|
||||||
|
label: "Public Port"
|
||||||
|
description: "Unique public port for kopf"
|
||||||
|
type: "int"
|
||||||
|
default: 80
|
||||||
|
required: true
|
||||||
elasticsearch-masters:
|
elasticsearch-masters:
|
||||||
metadata:
|
metadata:
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
kibana-vip:
|
kibana-vip:
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- "${public_port}:80"
|
||||||
restart: always
|
restart: always
|
||||||
tty: true
|
tty: true
|
||||||
image: rancher/load-balancer-service
|
image: rancher/load-balancer-service
|
||||||
|
@ -9,6 +9,13 @@
|
|||||||
type: "service"
|
type: "service"
|
||||||
required: true
|
required: true
|
||||||
default: "es/elasticsearch-clients"
|
default: "es/elasticsearch-clients"
|
||||||
|
- variable: "public_port"
|
||||||
|
label: "Public Port"
|
||||||
|
description: "Unique public port for Kibana"
|
||||||
|
type: "int"
|
||||||
|
default: 80
|
||||||
|
required: true
|
||||||
|
|
||||||
nginx-proxy:
|
nginx-proxy:
|
||||||
metadata:
|
metadata:
|
||||||
nginx:
|
nginx:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user