Skip to content

Deploy grafana dashboards #613

Deploy grafana dashboards

Deploy grafana dashboards #613

name: Deploy grafana dashboards
on:
schedule:
# Run at 05:00 every day, ref: https://crontab.guru/#0_5_*_*_*
- cron: 0 5 * * *
workflow_dispatch:
jobs:
deploy_grafana_dashboards:
runs-on: ubuntu-22.04
strategy:
# Don't stop other deployments if one fails
fail-fast: false
matrix:
include:
# The grafana for 2i2c cluster holds also info about all other
# clusters and gets an additional dashboard deployed for that
- cluster_name: 2i2c
deploy_flags: --dashboards-dir=global-dashboards
- cluster_name: 2i2c
- cluster_name: 2i2c-aws-us
- cluster_name: 2i2c-jetstream2
- cluster_name: 2i2c-uk
- cluster_name: aimatx-2i2c-hub
- cluster_name: awi-ciroh
- cluster_name: berkeley-geojupyter
- cluster_name: bnext-bio
- cluster_name: catalystproject-africa
- cluster_name: catalystproject-latam
- cluster_name: cloudbank
- cluster_name: dubois
- cluster_name: disasters
- cluster_name: earthscope
- cluster_name: hhmi
- cluster_name: jupyter-health
- cluster_name: leap
- cluster_name: maap
- cluster_name: nasa-cryo
- cluster_name: nasa-ghg-hub
- cluster_name: nasa-veda
- cluster_name: neurohackademy
- cluster_name: nmfs-openscapes
- cluster_name: openscapeshub
- cluster_name: opensci
- cluster_name: projectpythia
- cluster_name: projectpythia-binder
- cluster_name: reflective
- cluster_name: smithsonian
- cluster_name: strudel
- cluster_name: temple
- cluster_name: ubc-eoas
- cluster_name: utoronto
- cluster_name: victor
- cluster_name: oceanhackweek
- cluster_name: heliophysics
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install deployer
run: |
python3 -m pip install --editable .
- name: Install jsonnet (go-jsonnet)
run: |
JSONNET_VERSION=0.20.0
wget -qO- https://github.com/google/go-jsonnet/releases/download/v${JSONNET_VERSION}/go-jsonnet_${JSONNET_VERSION}_Linux_x86_64.tar.gz \
| tar -xvz --one-top-level=$HOME/.local/bin
- name: Install sops
uses: mdgreenwald/[email protected]
- name: Setup sops credentials to decrypt repo secrets
uses: google-github-actions/auth@v3
with:
credentials_json: ${{ secrets.GCP_KMS_DECRYPTOR_KEY }}
- name: Deploy grafana dashboards for ${{ matrix.cluster_name }}
run: |
deployer deploy-dashboards ${{ matrix.deploy_flags }} ${{ matrix.cluster_name }}