-
Notifications
You must be signed in to change notification settings - Fork 405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade kube state metrics #13037
Upgrade kube state metrics #13037
Conversation
/retest |
✔️ 🥰 Documentation preview ready! 🥰 🔨 Explore the source changes: fd40799 🔍 Inspect the deploy log: https://app.netlify.com/sites/kyma-project-docs-preview/deploys/61e9764746179a000859cdc9 😎 Browse the preview: https://deploy-preview-13037--kyma-project-docs-preview.netlify.app |
/retest |
/retest |
/retest |
@rakesh-garimella: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Description
Changes proposed in this pull request:
kube-state-metrics
to 2.3.0_helper.tpl
kube-state-metrics
cluster role can be toggled via values.yamldeployment.yaml
kube_pod_labels
since 2.1:kube_deployment_labels
metric missingDEPLOYMENT_LABEL
labels kubernetes/kube-state-metrics#1489Metric renames:
kube_daemonset_updated_number_scheduled
->kube_daemonset_status_updated_number_scheduled
kube_hpa_*
->kube_horizontalpodautoscaler_*
Dropped metrics (as per https://github.com/kubernetes/kube-state-metrics/tree/release-1.9/docs#metrics-deprecation)
kube_pod_container_resource_requests
andkube_pod_container_resource_limits
are the replacements with resource labels representing the resource name and unit labels representing the resource unit.kube_pod_container_resource_requests_cpu_cores
kube_pod_container_resource_limits_cpu_cores
kube_pod_container_resource_requests_memory_bytes
kube_pod_container_resource_limits_memory_bytes
kube_node_status_capacity
andkube_node_status_allocatable
are the replacements with resource labels representing the resource name and unit labels representing the resource unit.kube_node_status_capacity_pods
kube_node_status_capacity_cpu_cores
kube_node_status_capacity_memory_bytes
kube_node_status_allocatable_pods
kube_node_status_allocatable_cpu_cores
kube_node_status_allocatable_memory_bytes
Interesting changes:
Related issue(s)
#11567