Bug 2066270
| Summary: | Fallback to CAPI annotations | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Alberto <agarcial> |
| Component: | Cloud Compute | Assignee: | Alberto <agarcial> |
| Cloud Compute sub component: | Cluster Autoscaler | QA Contact: | sunzhaohua <zhsun> |
| Status: | CLOSED ERRATA | Docs Contact: | |
| Severity: | high | ||
| Priority: | high | CC: | aos-bugs, zhsun |
| Version: | 4.9 | ||
| Target Milestone: | --- | ||
| Target Release: | 4.9.z | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 2066262 | Environment: | |
| Last Closed: | 2022-04-08 09:56:16 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 2066262 | ||
| Bug Blocks: | |||
|
Description
Alberto
2022-03-21 11:54:06 UTC
Verified
ocp clusterversion: 4.9.0-0.nightly-2022-03-29-031241
hypershift guest cluster:
oc get hostedcontrolplane -n clusters-example-02 -ojsonpath='{.items[*].spec.releaseImage}'
registry.ci.openshift.org/ocp/release:4.9.0-0.nightly-2022-03-29-031241
Steps:
1. Install ocp cluster
2. Create a HostedCluster
3. Add NodePools and enable autoscaling
oc patch nodepool example-02-us-east-2a --type=json --patch='[{"op":"remove", "path":"/spec/nodeCount"}]' -n clusters
oc -n clusters patch nodepool example-02-us-east-2a --type=merge --patch='{"spec":{"autoScaling":{"max":4, "min":1}}}'
$ oc get nodepools -n clusters [16:52:08]
NAME CLUSTER DESIRED NODES CURRENT NODES AUTOSCALING AUTOREPAIR VERSION UPDATINGVERSION UPDATINGCONFIG MESSAGE
example-02-us-east-2a example-02 2 True False 4.9.0-0.nightly-2022-03-29-031241
4. Check machineset annotation is cluster.x-k8s.io/cluster-api-autoscaler-node-group-max-size
$ oc get machineset -A -ojsonpath='{.items[*].metadata.annotations}' | jq
{
"cluster.x-k8s.io/cluster-api-autoscaler-node-group-max-size": "4",
"cluster.x-k8s.io/cluster-api-autoscaler-node-group-min-size": "1",
"hypershift.openshift.io/nodePool": "clusters/example-02-us-east-2a",
"machinedeployment.clusters.x-k8s.io/desired-replicas": "1",
"machinedeployment.clusters.x-k8s.io/max-replicas": "2",
"machinedeployment.clusters.x-k8s.io/revision": "1",
"machinedeployment.clusters.x-k8s.io/revision-history": "1,1"
}
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: OpenShift Container Platform 4.9.27 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:1158 |