Skip to content

Commit 8fb9b23

Browse files
authored
Merge pull request #1406 from lilic/release-2.rc.0
Cut v2.0.0-rc.0
2 parents 323a841 + 7da9f00 commit 8fb9b23

16 files changed

Lines changed: 30 additions & 22 deletions

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v2.0.0-rc.0 / 2021-03-04
2+
3+
* [CHANGE] internal/store/pod.go: Only create waiting_reason series if pods are in waiting state #1378
4+
* [CHANGE] internal/store/pod.go: Only create terminated_reason series if pods are in terminated state #1381
5+
* [CHANGE] internal/store/pod.go: Only create last_terminated containers series if containers are terminated state #1397
6+
* [FEATURE] Bump client-go and friends to v0.20 (kubernetes v1.20) #1328
7+
* [FEATURE] Bump go version to 1.16+ #1399
8+
* [BUGFIX] Fix gzip writer #1372
9+
* [BUGFIX] fix labels-metric-allow-list documentation #1404
10+
* [BUGFIX] Propagate resource version when sharded #1402
11+
112
## v2.0.0-beta / 2020-12-04
213
Promotion to beta release after a period of no bugs.
314

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ At most, 5 kube-state-metrics and 5 [kubernetes releases](https://github.com/kub
7070
|--------------------|---------------------|---------------------|----------------------|----------------------|-----------------------|
7171
| **v1.8.0** | - | - | - | - | - |
7272
| **v1.9.7** || - | - | - | - |
73-
| **v2.0.0-beta** | - | -/✓ | -/✓ |||
73+
| **v2.0.0-rc.0** | - | -/✓ | -/✓ |||
7474
| **master** | - | -/✓ | -/✓ |||
7575
- `` Fully supported version range.
7676
- `-` The Kubernetes cluster has features the client-go library can't use (additional API objects, deprecated APIs, etc).
@@ -86,8 +86,7 @@ release.
8686
#### Container Image
8787

8888
The latest container image can be found at:
89-
* `quay.io/coreos/kube-state-metrics:v2.0.0-beta` (arch: `amd64`)
90-
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.0.0-beta` (arch: `amd64`, `arm`, `arm64`, `ppc64le` and `s390x`)
89+
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.0.0-rc.0` (arch: `amd64`, `arm`, `arm64`, `ppc64le` and `s390x`)
9190

9291
### Metrics Documentation
9392

RELEASE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Maintaining the release branches for older minor releases happens on a best effo
1717
* Bump the version in the `VERSION` file in the root of the repository.
1818
* Run `make examples`, which will re-generate all example manifests to use the new version.
1919
* Make a PR to update:
20-
* kube-state-metrics image tag for both `quay.io` and `gcr.io/k8s-staging-kube-state-metrics`.
2120
* [Compatibility matrix](README.md#compatibility-matrix)
2221
* Changelog entry
2322
* Only include user relevant changes
@@ -34,7 +33,6 @@ Maintaining the release branches for older minor releases happens on a best effo
3433
* Cut the new release tag, i.e., `v1.2.0-rc.0`
3534
* New images are automatically built and pushed to `gcr.io/k8s-staging-kube-state-metrics/kube-state-metrics`
3635
* Promote image by sending a PR to [kubernetes/k8s.io](https://github.com/kubernetes/k8s.io) repo. Follow the [example PR](https://github.com/kubernetes/k8s.io/pull/1260).
37-
* Build and push newest image to `quay.io/coreos`(@brancz, @lilic)
3836
3937
## Stable release
4038

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-beta
1+
2.0.0-rc.0

examples/autosharding/cluster-role-binding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: ClusterRoleBinding
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
roleRef:
99
apiGroup: rbac.authorization.k8s.io

examples/autosharding/cluster-role.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: ClusterRole
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
rules:
99
- apiGroups:

examples/autosharding/role-binding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: RoleBinding
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
namespace: kube-system
99
roleRef:

examples/autosharding/role.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Role
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
namespace: kube-system
99
rules:

examples/autosharding/service-account.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: ServiceAccount
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
namespace: kube-system

examples/autosharding/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Service
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-beta
6+
app.kubernetes.io/version: 2.0.0-rc.0
77
name: kube-state-metrics
88
namespace: kube-system
99
spec:

0 commit comments

Comments
 (0)