From e7143e8f21a8f05519df5d8fc00e41cb4de23bcb Mon Sep 17 00:00:00 2001 From: Bencey <33912370+Bencey@users.noreply.github.com> Date: Fri, 3 May 2019 13:50:51 +1200 Subject: [PATCH 1/3] Update to fix disk space (#49) Fixing this issue https://github.com/stefanprodan/swarmprom/issues/84 --- manuscript/recipes/swarmprom.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manuscript/recipes/swarmprom.md b/manuscript/recipes/swarmprom.md index 26c1f33..89252c0 100644 --- a/manuscript/recipes/swarmprom.md +++ b/manuscript/recipes/swarmprom.md @@ -160,7 +160,7 @@ Create a docker swarm config file in docker-compose syntax (v3), based on the or memory: 64M grafana: - image: stefanprodan/swarmprom-grafana:5.0.1 + image: stefanprodan/swarmprom-grafana:5.3.4 networks: - internal env_file: /var/data/config/swarmprom/grafana.env @@ -289,7 +289,7 @@ Create a docker swarm config file in docker-compose syntax (v3), based on the or node-exporter: - image: stefanprodan/swarmprom-node-exporter:v0.15.2 + image: stefanprodan/swarmprom-node-exporter:v0.16.0 networks: - internal environment: @@ -317,7 +317,7 @@ Create a docker swarm config file in docker-compose syntax (v3), based on the or memory: 64M prometheus: - image: stefanprodan/swarmprom-prometheus:v2.2.0-rc.0 + image: stefanprodan/swarmprom-prometheus:v2.5.0 networks: - internal command: From 1ecbcd586f21f1b5720d8b24cf9c235f0b51362d Mon Sep 17 00:00:00 2001 From: Bencey <33912370+Bencey@users.noreply.github.com> Date: Tue, 7 May 2019 13:06:20 +1200 Subject: [PATCH 2/3] Added \ (#51) Added \ in code as the script would fail without it --- manuscript/ha-docker-swarm/shared-storage-ceph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/ha-docker-swarm/shared-storage-ceph.md b/manuscript/ha-docker-swarm/shared-storage-ceph.md index 6e1fa0f..ef519aa 100644 --- a/manuscript/ha-docker-swarm/shared-storage-ceph.md +++ b/manuscript/ha-docker-swarm/shared-storage-ceph.md @@ -91,7 +91,7 @@ docker run -d --net=host \ -v /etc/ceph:/etc/ceph \ -v /var/lib/ceph/:/var/lib/ceph/ \ -v /dev/:/dev/ \ --e OSD_FORCE_ZAP=1 +-e OSD_FORCE_ZAP=1 \ -e OSD_DEVICE=/dev/vdd \ -e OSD_TYPE=disk \ --name="ceph-osd" \ From 2ab30a14b4008003e5e2df195bc8e935499334ba Mon Sep 17 00:00:00 2001 From: Bencey <33912370+Bencey@users.noreply.github.com> Date: Tue, 7 May 2019 13:06:49 +1200 Subject: [PATCH 3/3] Remove .md (#50) Removing .md as when you click on the link on the site it loads the site without css --- manuscript/ha-docker-swarm/traefik.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/ha-docker-swarm/traefik.md b/manuscript/ha-docker-swarm/traefik.md index 7e90205..d366f6d 100644 --- a/manuscript/ha-docker-swarm/traefik.md +++ b/manuscript/ha-docker-swarm/traefik.md @@ -13,7 +13,7 @@ To deal with these gaps, we need a front-end load-balancer, and in this design, ## Ingredients -1. [Docker swarm cluster](/ha-docker-swarm/design/) with [persistent shared storage](/ha-docker-swarm/shared-storage-ceph.md) +1. [Docker swarm cluster](/ha-docker-swarm/design/) with [persistent shared storage](/ha-docker-swarm/shared-storage-ceph) ## Preparation