Skip to content

Commit e7ea806

Browse files
authored
Merge pull request #1307 from lilic/cut-2.0.0-alpha.3
Cut 2.0.0-alpha.3
2 parents 6141abc + 023a862 commit e7ea806

15 files changed

Lines changed: 26 additions & 22 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.0.0-alpha.3 / 2020-11-19
2+
3+
* [BUGFIX] Fix container resource limits metrics, which got dropped #1293
4+
* [BUGFIX] Adjust and refactor allowing labels to work for Kubernetes labels metrics #1301
5+
Note this is a breaking change, if you were using --labels-allow-list, look at the PR details for more information.
6+
17
## v2.0.0-alpha.2 / 2020-10-27
28

39
* [CHANGE] Migrate ingress and certificates to new stable APIs #1260

README.md

Lines changed: 3 additions & 5 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-alpha.2** | - | - | -/✓ | -/✓ ||
73+
| **v2.0.0-alpha.3** | - | - | -/✓ | -/✓ ||
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,10 +86,8 @@ release.
8686
#### Container Image
8787

8888
The latest container image can be found at:
89-
* `quay.io/coreos/kube-state-metrics:v2.0.0-alpha.2`
90-
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics:2.0.0-alpha.2`
91-
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics-arm:2.0.0-alpha.2`
92-
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics-arm64:2.0.0-alpha.2`
89+
* `quay.io/coreos/kube-state-metrics:v2.0.0-alpha.3` (arch: `amd64`)
90+
* `k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.0.0-alpha.3` (arch: `amd64`, `arm`, `arm64`, `ppc64le` and `s390x`)
9391

9492
### Metrics Documentation
9593

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0-alpha.2
1+
2.0.0-alpha.3

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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
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-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
77
name: kube-state-metrics
88
namespace: kube-system
99
spec:

examples/autosharding/statefulset.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: StatefulSet
33
metadata:
44
labels:
55
app.kubernetes.io/name: kube-state-metrics
6-
app.kubernetes.io/version: 2.0.0-alpha.2
6+
app.kubernetes.io/version: 2.0.0-alpha.3
77
name: kube-state-metrics
88
namespace: kube-system
99
spec:
@@ -16,7 +16,7 @@ spec:
1616
metadata:
1717
labels:
1818
app.kubernetes.io/name: kube-state-metrics
19-
app.kubernetes.io/version: 2.0.0-alpha.2
19+
app.kubernetes.io/version: 2.0.0-alpha.3
2020
spec:
2121
containers:
2222
- args:
@@ -31,7 +31,7 @@ spec:
3131
valueFrom:
3232
fieldRef:
3333
fieldPath: metadata.namespace
34-
image: quay.io/coreos/kube-state-metrics:v2.0.0-alpha.2
34+
image: quay.io/coreos/kube-state-metrics:v2.0.0-alpha.3
3535
livenessProbe:
3636
httpGet:
3737
path: /healthz

0 commit comments

Comments
 (0)