Skip to content

Commit 1c70781

Browse files
Introduce Logging Stack: Add fluentd, add loki (🚧🚧 DEVOPS 🚧🚧) (#1058)
* wip * Add csi-s3 and have portainer use it * Change request @Hrytsuk 1GB max portainer volume size * Arch Linux Certificates Customization * Fix pgsql exporter failure * [Kubernetes] Introduce on-prem persistent Storage (Longhorn) πŸŽ‰ (#979) * Introduce longhorn chart * Further longhorn configuration * Longhorn: further settings configuration * Fix longhorn configuration bugs Extra: introduce longhorn pv vales for portainer * Add comment for deletion longhorn * Further longhorn configuration * Add README.md for Longhorn wit FAQ * Update Longhorn readme * Update readme * Futher LH configuration * Update LH's Readme * Update Longhorn Readme * Improve LH's Readme * LH: Reduce reserved default disk space to 5% Since we use a dedicated disk for LH, we can go ahead with 5% * Use values to set Longhorn storage class * Update LH's Readme * LH Readme: add requirements reference * PR Review: bring back portainer s3 pv * LH: decrease portinaer volume size * Experimental: Try to add tracing to simcore-traefik on master * wip * Fix accidental commit * Fluentd fixes * Add placement constraints * revert arch linux changes * Remove DNS setting * wip * Remove accidental commit * Add README.md, remove loki docker volume * Update README.md --------- Co-authored-by: Dustin Kaiser <[email protected]> Co-authored-by: YH <[email protected]>
1 parent 41a2308 commit 1c70781

28 files changed

+504
-60
lines changed

β€Žscripts/deployments/deploy_everything_locally.bashβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ if [ "$start_opsstack" -eq 0 ]; then
243243
call_make "." up-"$stack_target";
244244
popd
245245

246-
# -------------------------------- GRAYLOG -------------------------------
247-
log_info "starting graylog..."
248-
service_dir="${repo_basedir}"/services/graylog
246+
# -------------------------------- LOGGING -------------------------------
247+
log_info "starting logging..."
248+
service_dir="${repo_basedir}"/services/logging
249249
pushd "${service_dir}"
250250
call_make "." up-"$stack_target"
251251
sleep 1
-284 KB
Binary file not shown.

β€Žservices/graylog/docker-compose.aws.ymlβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.

β€Žservices/graylog/docker-compose.dalco.ymlβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.

β€Žservices/graylog/docker-compose.master.ymlβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
services:
2+
mongodb:
3+
deploy:
4+
placement:
5+
constraints:
6+
- node.labels.logging==true
7+
elasticsearch:
8+
deploy:
9+
placement:
10+
constraints:
11+
- node.labels.logging==true
12+
graylog:
13+
deploy:
14+
placement:
15+
constraints:
16+
- node.labels.logging==true
17+
18+
fluentd:
19+
deploy:
20+
placement:
21+
constraints:
22+
- node.labels.logging==true
23+
24+
loki:
25+
deploy:
26+
placement:
27+
constraints:
28+
- node.labels.logging==true

0 commit comments

Comments
Β (0)