Skip to content

Commit

Permalink
docs: update grafana metrics and add upgrade entry (#2646)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwagner5 committed Oct 11, 2022
1 parent 9b0f66b commit b9e3def
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Expand Up @@ -208,14 +208,14 @@
"uid": "${datasource}"
},
"editorMode": "builder",
"expr": "sum by(cluster) (karpenter_consolidation_nodes_created)",
"expr": "sum by(cluster) (karpenter_nodes_created)",
"format": "time_series",
"legendFormat": "{{cluster}}",
"range": true,
"refId": "A"
}
],
"title": "Consolidation: Nodes Created",
"title": "Nodes Created",
"type": "timeseries"
},
{
Expand Down Expand Up @@ -303,14 +303,14 @@
"uid": "${datasource}"
},
"editorMode": "builder",
"expr": "sum by(cluster) (karpenter_consolidation_nodes_terminated)",
"expr": "sum by(cluster) (karpenter_nodes_terminated)",
"format": "time_series",
"legendFormat": "{{cluster}}",
"range": true,
"refId": "A"
}
],
"title": "Consolidation: Nodes Terminated",
"title": "Nodes Terminated",
"type": "timeseries"
},
{
Expand Down
3 changes: 3 additions & 0 deletions website/content/en/preview/upgrade-guide/_index.md
Expand Up @@ -97,6 +97,9 @@ By adopting this practice we allow our users who are early adopters to test out

# Released Upgrade Notes

## Upgrading to v0.18.0+
* v0.18.0 removes the `karpenter_consolidation_nodes_created` and `karpenter_consolidation_nodes_terminated` prometheus metrics in favor of the more generic `karpenter_nodes_created` and `karpenter_nodes_terminated` metrics. You can still see nodes created and terminated by consolidation by checking the `reason` label on the metrics. Check out all the metrics published by Karpenter [here](../tasks/metrics/).

## Upgrading to v0.17.0+
Karpenter's Helm chart package is now stored in [Karpenter's OCI (Open Container Initiative) registry](https://gallery.ecr.aws/karpenter/karpenter). The Helm CLI supports the new format since [v3.8.0+](https://helm.sh/docs/topics/registries/).
With this change [charts.karpenter.sh](https://charts.karpenter.sh/) is no longer updated but preserved to allow using older Karpenter versions. For examples on working with the Karpenter helm charts look at [Install Karpenter Helm Chart]({{< ref "../getting-started/getting-started-with-eksctl/#install-karpenter-helm-chart" >}}).
Expand Down

0 comments on commit b9e3def

Please sign in to comment.