Skip to content

Commit

Permalink
fix: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Mar 18, 2024
1 parent 9e4758d commit 7644436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/parse-manifests/src/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const GRAFANA_PODS_VAR_DATASOURCE =


const DEV_CLUSTER_NAME =
process.env.PROVIDER === "ovh" ? "ovh-dev" : DEV_CLUSTER_NAME;
process.env.PROVIDER === "ovh" ? "ovh-dev" : DEFAULT_DEV_CLUSTER_NAME;

const PROD_CLUSTER_NAME =
process.env.PROVIDER === "ovh" ? "ovh-prod" : PROD_CLUSTER_NAME;
process.env.PROVIDER === "ovh" ? "ovh-prod" : DEFAULT_PROD_CLUSTER_NAME;

const GRAFANA_URL = process.env.GRAFANA_URL || DEFAULT_GRAFANA_URL;

Expand Down

0 comments on commit 7644436

Please sign in to comment.