27 lines
797 B
Bash
Executable File
27 lines
797 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
. ../../scripts/lib-update.sh
|
|
|
|
#login_ecr_public
|
|
update_helm
|
|
|
|
FLUENT_BIT_VERSION=$(yq eval '.dependencies[] | select(.name=="fluent-bit") | .version' Chart.yaml)
|
|
FLUENTD_VERSION=$(yq eval '.dependencies[] | select(.name=="fluentd") | .version' Chart.yaml)
|
|
|
|
# OTEL
|
|
patch_chart opentelemetry-collector
|
|
yq -i 'del(.config.receivers.jaeger)|del(.config.receivers.zipkin)|del(.config.service.pipelines.metrics)|del(.config.service.pipelines.logs)' charts/opentelemetry-collector/values.yaml
|
|
|
|
# fluent-bit
|
|
# patch_chart fluent-bit
|
|
|
|
# FluentD
|
|
patch_chart fluentd
|
|
rm -f charts/fluentd/templates/files.conf/systemd.yaml
|
|
|
|
# Fetch dashboards from Grafana.com and update ZDT CM
|
|
../kubezero-metrics/sync_grafana_dashboards.py dashboards.yaml templates/grafana-dashboards.yaml
|
|
|
|
update_docs
|