Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tenants/tenant-1/elasticsearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ vcpus: 4
memory_mb: 4096
kernel_args: "console=ttyS0 reboot=k panic=1 pci=off init=/sbin/fc-init /bin/tini -- /usr/local/bin/docker-entrypoint.sh eswrapper"
network: true
port_forwards:
- host_port: 9200
vm_port: 9200
health_check:
type: "http"
port: 9200
Expand Down
9 changes: 6 additions & 3 deletions tenants/tenant-1/kibana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,21 @@ vcpus: 2
memory_mb: 2048
kernel_args: "console=ttyS0 reboot=k panic=1 pci=off init=/sbin/fc-init /bin/tini -- /usr/local/bin/kibana-docker"
network: true
links:
cross_node_links:
- service: "elasticsearch"
env: "ELASTICSEARCH_HOSTS"
port: 9200
host_port: 9200
protocol: "http"
port_forwards:
- host_port: 5611
vm_port: 5601
health_check:
type: "http"
port: 5601
path: "/api/status"
interval: "15s"
# Keep the failure budget above Kibana's observed cold-start time so a
# healthy first boot is not recycled before it can answer readiness checks.
interval: "30s"
timeout: "5s"
retries: 5
env:
Expand Down
Loading