Skip to content

Releases: kubernetes/kube-state-metrics

v1.7.2 / 2019-08-05

05 Aug 15:22
v1.7.2
4c0e83b
Compare
Choose a tag to compare

A security issue was discovered in the v1.7.0 and v1. 7.1 versions of kube-state-metrics [1]. The issue is of Medium severity level and upgrading to the latest release v1.7.2 [2] of kube-state-metrics is highly encouraged to fix this issue, as well as deleting the time-series data that could potentially disclose secret information.

Am I vulnerable?

If you are using the kube-state-metrics versions v1.7.0 or v1.7.1, you are running a vulnerable version. To find out which version you are running, you can verify the image tag of your kube-state-metrics deployment.

The following commands should give you the deployed image tag. (Please note that this may vary depending on which namespace kube-state-metrics is deployed in and the deployment name itself):

kubectl get deployment -n kube-system kube-state-metrics -o yaml | grep image:

How do I mitigate the vulnerability?

Update the image of kube-state-metrics to quay.io/coreos/kube-state-metrics:v1.7.2.

If you are unable to upgrade to the latest version of kube-state-metrics, you can filter out all of the annotation metrics by passing the following flag to kube-state-metrics:

--metric-blacklist="kube_.*_annotations"

Make sure to delete all the time series data from Prometheus as well, below is an example command. (Note that this will only work from Prometheus v2.1 onward. More details on time series data deletion can be found in the Prometheus docs [3])

# This command deletes all of the annotation metrics emitted by kube-state-metrics
curl -X POST -g 'http://localhost:9090/api/v1/admin/tsdb/delete_series?match[]={__name__=~"kube_.+_annotations"}'

This requires the Admin APIs to be enabled. Start Prometheus with the --web.enable-admin-api flag to do so.
Please remember that the delete API only marks the time-series data for deletion. The actual removal happens during the next compaction process. To trigger this, the clean tombstones API can be used:

curl -X POST http://localhost:9090/api/v1/admin/tsdb/clean_tombstones 

Vulnerability Details

An experimental feature was added to the v1.7.0 release that enabled annotations to be exposed as metrics. By default, the kube-state-metrics metrics only expose metadata about Secrets. However, a combination of the default kubectl behavior and this new feature can cause the entire secret content to end up in metric labels thus inadvertently exposing the secret content in metrics.

We are not aware of other annotations that disclose information in the same way, but as a precaution we have reverted the feature and will think more thoroughly about the implications should we ever introduce something like it again.

This feature has been reverted and released as the v1.7.2 release. If you are running the v1.7.0 or v1.7.1 release, please upgrade to the v1.7.2 release as soon as possible.

Thank you to Moritz S. for reporting this issue! Also thank you to Tariq Ibrahim, Frederic Branczyk and Lili Cosic for the coordination in making the fix and release.

Thank you for your understanding,
kube-state-metrics maintainers

[1] https://github.com/kubernetes/kube-state-metrics
[2] https://github.com/kubernetes/kube-state-metrics/releases/tag/v1.7.2
[3] https://prometheus.io/docs/prometheus/latest/querying/api/#delete-series

  • [CHANGE] Revert "add kube_*_annotations metrics for all objects" #859
  • [CHANGE] Remove kube_namespace_annotations metric #859

v1.7.1 / 2019-07-18

19 Jul 23:56
v1.7.1
9f7e59d
Compare
Choose a tag to compare
  • [BUGFIX] Fix crash due to missing ingress http block. #831
  • [BUGFIX] Add nil guard checks when querying VPA objects. #832

v1.7.0 / 2019-07-17

18 Jul 03:26
v1.7.0
66ac307
Compare
Choose a tag to compare

After a testing period of 7 days, there were no additional bugs found or features introduced.

[BUGFIX] Use the appsv1 apigroup when building the reflector for replicasets. #816
[CHANGE] Use appsv1 apigroup for ReplicaSet. #804
[CHANGE] Use distroless/static as base image to further reduce image size. #748
[CHANGE] Return standardized text for health endpoint. #767
[ENHANCEMENT] Add DeadlineExceeded pod termination reason. #740
[ENHANCEMENT] Add CreateContainerError and InvalidImageName waiting reasons. #763
[FEATURE] Add Pod init container metrics. #762
[FEATURE] Add Metrics About StorageClass. #777
[FEATURE] Allow black/white- listing of metrics by regex. #773
[FEATURE] Add metrics for VerticalPodAutoscaler objects (experimental and disabled by default). #791
[FEATURE] Add (experimental) kube_*_annotations metrics. #770

v1.7.0-rc.1 / 2019-07-10

10 Jul 18:41
v1.7.0-rc.1
e3d1cab
Compare
Choose a tag to compare
Pre-release

[BUGFIX] Use the appsv1 apigroup when building the reflector for replicasets. #816

v1.7.0-rc.0 / 2019-07-10

10 Jul 17:35
v1.7.0-rc.0
48a9424
Compare
Choose a tag to compare
Pre-release
  • [CHANGE] Use appsv1 apigroup for ReplicaSet. #804
  • [CHANGE] Use distroless/static as base image to further reduce image size. #748
  • [CHANGE] Return standardized text for health endpoint. #767
  • [ENHANCEMENT] Add DeadlineExceeded pod termination reason. #740
  • [ENHANCEMENT] Add CreateContainerError and InvalidImageName waiting reasons. #763
  • [FEATURE] Add Pod init container metrics. #762
  • [FEATURE] Add Metrics About StorageClass. #777
  • [FEATURE] Allow black/white- listing of metrics by regex. #773
  • [FEATURE] Add metrics for VerticalPodAutoscaler objects (experimental and disabled by default). #791
  • [FEATURE] Add (experimental) kube_*_annotations metrics. #770

v1.6.0 / 2019-05-06

06 May 12:50
v1.6.0
de19ed4
Compare
Choose a tag to compare

After a testing period of 10 days (release candidate 2), there were no
additional bugs found, thus releasing the stable version v1.6.0.

  • [FEATURE] Add kube_replicaset_labels to replicaset collector (#638).
  • [FEATURE] Add ingresses collector (#640).
  • [FEATURE] Add certificate signing request collector (#650).
  • [FEATURE] Add kube_persistentvolumeclaim_access_mode metric (#673).
  • [FEATURE] Add kube_persistentvolume_capacity metric (#674).
  • [FEATURE] Add kube_job_owner metric (#681).
  • [ENHANCEMENT] Add priority_class label to kube_pod_info metric (#713).
  • [BUGFIX] Bump addon-resizer patch version reducing resource consumption (#724).
  • [BUGFIX] Use k8s.io/api/apps/v1 for DaemonSet, Deployment and StatefulSet reflector (#720).

v1.6.0-rc.2 / 2019-04-26

26 Apr 11:12
v1.6.0-rc.2
537ebd6
Compare
Choose a tag to compare
Pre-release
  • [BUGFIX] Bump addon-resizer patch version reducing resource consumption (#724).

v1.6.0-rc.1 / 2019-04-23

26 Apr 11:11
v1.6.0-rc.1
919acdf
Compare
Choose a tag to compare
Pre-release
  • [BUGFIX] Use k8s.io/api/apps/v1 for DaemonSet, Deployment and StatefulSet reflector (#720).

v1.6.0-rc.0 / 2019-04-05

08 Apr 11:10
v1.6.0-rc.0
d7b8a74
Compare
Choose a tag to compare
Pre-release
  • [FEATURE] Add kube_replicaset_labels to replicaset collector (#638).
  • [FEATURE] Add ingresses collector (#640).
  • [FEATURE] Add certificate signing request collector (#650).
  • [FEATURE] Add kube_persistentvolumeclaim_access_mode metric (#673).
  • [FEATURE] Add kube_persistentvolume_capacity metric (#674).
  • [FEATURE] Add kube_job_owner metric (#681).
  • [ENHANCEMENT] Add priority_class label to kube_pod_info metric (#713).

v1.5.0 / 2019-01-10

11 Jan 09:16
v1.5.0
c888603
Compare
Choose a tag to compare

After a testing period of 30 days, there were no additional bugs found or features introduced. Due to no bugs being reported over an in total 41 days period, we feel no more pre-releases are necessary for a stable release.

This release's focus was a large architectural change in order to improve performance and resource usage of kube-state-metrics drastically. Special thanks to @mxinden for his hard work on this! See the changelog of the pre-releases for more detailed information and related pull requests.

An additional change has been requested to be listed in the release notes:

  • [CHANGE] Due to removal of the surrounding mechanism the ksm_resources_per_scrape and ksm_scrape_error_total metrics no longer exists.