diff --git a/grafana-data/datasources.json b/grafana-data/datasources.json index f7cbaa1796..5cece7b2b0 100644 --- a/grafana-data/datasources.json +++ b/grafana-data/datasources.json @@ -18,6 +18,22 @@ "url": "https://notebooks.gesis.org/prometheus", "user": "" }, + { + "access": "proxy", + "basicAuth": false, + "database": "", + "id": 3, + "isDefault": false, + "jsonData": {}, + "name": "Curvenote", + "orgId": 1, + "password": "", + "readOnly": false, + "type": "prometheus", + "typeLogoUrl": "public/app/plugins/datasource/prometheus/img/prometheus_logo.svg", + "url": "https://prometheus.binder.curvenote.dev/", + "user": "" + }, { "access": "proxy", "basicAuth": false, diff --git a/terraform/gcp/prod/main.tf b/terraform/gcp/prod/main.tf index df8f7487d6..c1f29ca019 100644 --- a/terraform/gcp/prod/main.tf +++ b/terraform/gcp/prod/main.tf @@ -14,7 +14,7 @@ provider "google" { locals { gke_version = "1.23.16-gke.1400" location = "us-central1" # for regional clusters - federation_members = ["gesis", "ovh"] + federation_members = ["gesis", "ovh", "curvenote"] } module "mybinder" { @@ -26,7 +26,7 @@ module "mybinder" { sql_tier = "db-n1-standard-1" - federation_members = ["gesis", "ovh"] + federation_members = local.federation_members } # define node pools here, too hard to encode with variables