Skip to content

Commit

Permalink
blocked-edges/4.15.3-EarlyAPICertRotation: Extend to 4.15.2 and .3
Browse files Browse the repository at this point in the history
21684f7 (blocked-edges/4.15.0-EarlyAPICertRotation: Fixed in
4.15.2, 2024-03-08, openshift#4898) thought this was fixed, but apparently not
[1].

[1]: https://issues.redhat.com/browse/OCPBUGS-31384
  • Loading branch information
wking committed Mar 25, 2024
1 parent 496dd1c commit b474a45
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
1 change: 0 additions & 1 deletion blocked-edges/4.15.0-EarlyAPICertRotation.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
to: 4.15.0
from: 4[.]14[.].*
fixedIn: 4.15.2
url: https://issues.redhat.com/browse/API-1687
name: EarlyAPICertRotation
message: Clusters born in 4.7 and earlier will trigger an api-int certificate authority rollout, and bugs in that rollout may break kubelet access to the Kubernetes API service.
Expand Down
14 changes: 14 additions & 0 deletions blocked-edges/4.15.2-EarlyAPICertRotation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
to: 4.15.2
from: 4[.]14[.].*
url: https://issues.redhat.com/browse/API-1687
name: EarlyAPICertRotation
message: Clusters born in 4.7 and earlier will trigger an api-int certificate authority rollout, and bugs in that rollout may break kubelet access to the Kubernetes API service.
matchingRules:
- type: PromQL
promql:
promql: |
topk(1,
label_replace(group by (version) (cluster_version{_id="",type="initial",version=~"4[.][0-9][.].*"}),"born_by_4_9", "yes, so possibly actually born in 4.7 or earlier", "", "")
or
label_replace(0 * group by (version) (cluster_version{_id="",type="initial",version!~"4[.][0-9][.].*"}),"born_by_4_9", "no, born in 4.10 or later", "", "")
)
14 changes: 14 additions & 0 deletions blocked-edges/4.15.3-EarlyAPICertRotation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
to: 4.15.3
from: 4[.]14[.].*
url: https://issues.redhat.com/browse/API-1687
name: EarlyAPICertRotation
message: Clusters born in 4.7 and earlier will trigger an api-int certificate authority rollout, and bugs in that rollout may break kubelet access to the Kubernetes API service.
matchingRules:
- type: PromQL
promql:
promql: |
topk(1,
label_replace(group by (version) (cluster_version{_id="",type="initial",version=~"4[.][0-9][.].*"}),"born_by_4_9", "yes, so possibly actually born in 4.7 or earlier", "", "")
or
label_replace(0 * group by (version) (cluster_version{_id="",type="initial",version!~"4[.][0-9][.].*"}),"born_by_4_9", "no, born in 4.10 or later", "", "")
)

0 comments on commit b474a45

Please sign in to comment.