2021-03-05 15:53:02 +00:00
|
|
|
#!/bin/bash
|
2021-12-15 22:19:52 +00:00
|
|
|
set -ex
|
2021-03-05 15:53:02 +00:00
|
|
|
|
2023-08-23 11:51:34 +00:00
|
|
|
. ../../scripts/lib-update.sh
|
|
|
|
|
2023-11-21 19:06:28 +00:00
|
|
|
update_helm
|
|
|
|
|
2021-12-15 22:19:52 +00:00
|
|
|
FLUENT_BIT_VERSION=$(yq eval '.dependencies[] | select(.name=="fluent-bit") | .version' Chart.yaml)
|
|
|
|
FLUENTD_VERSION=$(yq eval '.dependencies[] | select(.name=="fluentd") | .version' Chart.yaml)
|
2021-03-05 15:53:02 +00:00
|
|
|
|
2023-08-23 12:20:50 +00:00
|
|
|
# fluent-bit
|
2024-10-28 14:15:54 +00:00
|
|
|
# patch_chart fluent-bit
|
2023-08-23 12:20:50 +00:00
|
|
|
|
2021-03-10 09:32:12 +00:00
|
|
|
# FluentD
|
2023-08-23 11:51:34 +00:00
|
|
|
patch_chart fluentd
|
2023-08-23 12:20:50 +00:00
|
|
|
rm -f charts/fluentd/templates/files.conf/systemd.yaml
|
2021-04-25 20:19:06 +00:00
|
|
|
|
|
|
|
# Fetch dashboards from Grafana.com and update ZDT CM
|
2022-11-14 13:11:46 +00:00
|
|
|
../kubezero-metrics/sync_grafana_dashboards.py dashboards.yaml templates/fluent-bit/grafana-dashboards.yaml
|
|
|
|
../kubezero-metrics/sync_grafana_dashboards.py dashboards-es.yaml templates/eck/grafana-dashboards.yaml
|
2023-11-28 18:42:00 +00:00
|
|
|
|
|
|
|
update_docs
|