Bug 2017874
| Summary: | The installer is incorrectly checking the quota for X instances instead of G and VT instances | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Beth White <beth.white> |
| Component: | Installer | Assignee: | Aditya Narayanaswamy <anarayan> |
| Installer sub component: | openshift-installer | QA Contact: | Yunfei Jiang <yunjiang> |
| Status: | CLOSED ERRATA | Docs Contact: | |
| Severity: | medium | ||
| Priority: | medium | CC: | anarayan, knoha, mstaeble, yunjiang |
| Version: | 4.9 | ||
| Target Milestone: | --- | ||
| Target Release: | 4.10.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
The installer defaults all unknown instances to type X. This caused even the G and VT instances that were not previously considered to be defaulted to X. Adding a case statement to provide a separate quota values for G and VT instances.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2022-03-10 16:22:12 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Beth White
2021-10-27 15:43:05 UTC
verified. PASS.
aws service-quotas list-service-quotas --service-code=ec2 --query 'Quotas[?QuotaCode==`L-DB2E81BA`]' | jq .[].Value
920
aws ec2 describe-instance-types --instance-types g3.16xlarge | jq '.InstanceTypes[].VCpuInfo.DefaultVCpus'
64
install-config.yaml:
compute:
- architecture: amd64
hyperthreading: Enabled
name: worker
platform:
aws:
type: g3.16xlarge
replicas: 12
controlPlane:
architecture: amd64
hyperthreading: Enabled
name: master
platform:
aws:
type: g3.16xlarge
replicas: 3
error message:
FATAL failed to fetch Cluster: failed to fetch dependency of "Cluster": failed to generate asset "Platform Quota Check": error(MissingQuota): ec2/L-DB2E81BA is not available in us-east-2 because the required number of resources (960) is more than the limit of 920
OCP version: 4.10.0-0.nightly-2022-01-24-070025 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 (Moderate: OpenShift Container Platform 4.10.3 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:0056 |