2021-04-22 09:59:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
|
2021-05-05 12:05:17 +00:00
|
|
|
### NATS
|
|
|
|
|
2021-04-22 09:59:18 +00:00
|
|
|
# get latest chart until they have upstream repo fixed
|
|
|
|
rm -rf charts/nats && mkdir -p charts/nats
|
|
|
|
|
|
|
|
git clone --depth=1 https://github.com/nats-io/k8s.git
|
|
|
|
cp -r k8s/helm/charts/nats/* charts/nats/
|
|
|
|
rm -rf k8s
|
2021-05-04 13:00:24 +00:00
|
|
|
|
|
|
|
# Fetch dashboards
|
2021-05-05 16:35:43 +00:00
|
|
|
../kubezero-metrics/sync_grafana_dashboards.py dashboards.yaml templates/nats/grafana-dashboards.yaml
|