Skip to content
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

Support for kubernetes 1.22.0 / Update dependencies #1545

Merged
merged 2 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ OS ?= $(shell uname -s | tr A-Z a-z)
ALL_ARCH = amd64 arm arm64 ppc64le s390x
PKG = github.com/prometheus/common
PROMETHEUS_VERSION = 2.28.1
GO_VERSION = 1.16.5
GO_VERSION = 1.16.6
IMAGE = $(REGISTRY)/kube-state-metrics
MULTI_ARCH_IMG = $(IMAGE)-$(ARCH)
USER ?= $(shell id -u -n)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ All additional compatibility is only best effort, or happens to still/already be

At most, 5 kube-state-metrics and 5 [kubernetes releases](https://github.com/kubernetes/kubernetes/releases) will be recorded below.

| kube-state-metrics | **Kubernetes 1.17** | **Kubernetes 1.18** | **Kubernetes 1.19** | **Kubernetes 1.20** | **Kubernetes 1.21** |
| kube-state-metrics | **Kubernetes 1.18** | **Kubernetes 1.19** | **Kubernetes 1.20** | **Kubernetes 1.21** | **Kubernetes 1.22** |
|--------------------|---------------------|----------------------|----------------------|----------------------|----------------------|
| **v1.9.8** | - | - | - | - | - |
| **v2.0.0** | -/✓ | -/✓ | ✓ | | -/✓ |
| **v2.1.1** | -/✓ | -/✓ | ✓ | ✓ | |
| **master** | -/✓ | -/✓ | ✓ | ✓ | ✓ |
| **v2.0.0** | -/✓ | ✓ | ✓ | -/✓ | -/✓ |
| **v2.1.1** | -/✓ | ✓ | ✓ | ✓ | -/✓ |
| **master** | -/✓ | | ✓ | ✓ | ✓ |

- `✓` Fully supported version range.
- `-` The Kubernetes cluster has features the client-go library can't use (additional API objects, deprecated APIs, etc).
Expand Down
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module k8s.io/kube-state-metrics/v2

require (
github.com/brancz/gojsontoyaml v0.0.0-20210709073738-09985366e724
github.com/brancz/gojsontoyaml v0.1.0
github.com/campoy/embedmd v1.0.0
github.com/dgryski/go-jump v0.0.0-20170409065014-e1f439676b57
github.com/google/go-jsonnet v0.17.0
Expand All @@ -10,16 +10,16 @@ require (
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.29.0
github.com/prometheus/exporter-toolkit v0.6.0
github.com/prometheus/common v0.30.0
github.com/prometheus/exporter-toolkit v0.6.1
github.com/robfig/cron/v3 v3.0.1
github.com/spf13/pflag v1.0.5
golang.org/x/tools v0.1.4
k8s.io/api v0.21.2
k8s.io/apimachinery v0.21.2
golang.org/x/tools v0.1.5
k8s.io/api v0.22.0
k8s.io/apimachinery v0.22.0
k8s.io/autoscaler/vertical-pod-autoscaler v0.9.2
k8s.io/client-go v0.21.2
k8s.io/klog/v2 v2.9.0
k8s.io/client-go v0.22.0
k8s.io/klog/v2 v2.10.0
)

go 1.16
Loading