2021-03-05 15:53:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-04-07 10:00:53 +00:00
|
|
|
FLUENT_BIT_VERSION=0.15.4
|
2021-03-10 09:32:12 +00:00
|
|
|
FLUENTD_VERSION=0.2.2
|
2021-03-05 15:53:02 +00:00
|
|
|
|
2021-03-10 09:32:12 +00:00
|
|
|
# Fluent Bit
|
2021-03-05 15:53:02 +00:00
|
|
|
rm -rf charts/fluent-bit
|
|
|
|
curl -L -s -o - https://github.com/fluent/helm-charts/releases/download/fluent-bit-${FLUENT_BIT_VERSION}/fluent-bit-${FLUENT_BIT_VERSION}.tgz | tar xfz - -C charts
|
|
|
|
|
|
|
|
patch -i fluent-bit.patch -p0 --no-backup-if-mismatch
|
2021-03-10 09:32:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
# FluentD
|
|
|
|
rm -rf charts/fluentd
|
|
|
|
curl -L -s -o - https://github.com/fluent/helm-charts/releases/download/fluentd-${FLUENTD_VERSION}/fluentd-${FLUENTD_VERSION}.tgz | tar xfz - -C charts
|
|
|
|
|
|
|
|
patch -i fluentd.patch -p0 --no-backup-if-mismatch
|
2021-04-25 20:19:06 +00:00
|
|
|
|
|
|
|
# Fetch dashboards from Grafana.com and update ZDT CM
|
|
|
|
../kubezero-metrics/sync_grafana_dashboards.py dashboards.yaml templates/grafana-dashboards.yaml
|