在Ubuntu上进行Openshift安装失败

我正在尝试通过遵循以下文章在Ubuntu上安装openshift https://docs.openshift.com/container-platform/4.2/installing/installing_aws/installing-aws-default.html#installing-aws-default 但是,我受此命令./openshift-install create cluster --dir=<installation_directory> \ --log-level=info

的困扰

这是我收到的错误。

atest/gr/managing-aws-access-keys.html ********************************************************************INFO Creating infrastructure resources...         **********************************************************************************************************************************************************ERROR                                              ******************************************ERROR Error: [ERR]: Error building changeset: InvalidChangeBatch: [Tried to create resource record set [name='api.openshift.company_name.io.',type='A'] but it already exists] *****************************ERROR **status code: 400,request id: 872e5e4c-9511-474f-9c39-5e016a9622fc **************************ERROR                                              **************************************************ERROR   on ../../tmp/openshift-install-276450429/route53/base.tf line 23,in resource "aws_route53_record" "api_external": *******************************************************************************ERROR   23: resource "aws_route53_record" "api_external" { ******************************************ERROR                                              **************************************************ERROR                                              **************************************************ERROR                                              **************************************************ERROR Error: Error creating EIP: AddressLimitExceeded: The maximum number of addresses has been reached. *************************************************************************************************ERROR **status code: 400,request id: 376a4c5e-e2b6-4af7-8404-4be0fb3fa511 **************************ERROR                                              **************************************************ERROR   on ../../tmp/openshift-install-276450429/vpc/vpc-public.tf line 60,in resource "aws_eip" "nat_eip": *********************************************************************************************ERROR   60: resource "aws_eip" "nat_eip" {         **************************************************ERROR                                              **************************************************ERROR                                              *******************************************
ERROR
ERROR Error: Error creating EIP: AddressLimitExceeded: The maximum number of addresses has been reached.
ERROR   status code: 400,request id: bfa6cf06-2388-4901-a7c0-c9d9a19561c9
ERROR
ERROR   on ../../tmp/openshift-install-276450429/vpc/vpc-public.tf line 60,in resource "aws_eip" "nat_eip":
ERROR   60: resource "aws_eip" "nat_eip" {
ERROR
ERROR
ERROR
ERROR Error: Error creating EIP: AddressLimitExceeded: The maximum number of addresses has been reached.
ERROR   status code: 400,request id: 30f575a5-d97e-4be2-9c53-2dba0e384def
ERROR
ERROR   on ../../tmp/openshift-install-276450429/vpc/vpc-public.tf line 60,request id: 9e16410c-ef84-4dde-86
sunshengxia 回答:在Ubuntu上进行Openshift安装失败

您已达到AWS服务限制。 AWS返回错误:

ERROR Error: Error creating EIP: AddressLimitExceeded: The maximum number of addresses has been reached.
ERROR

在VPC中,Amazon每个区域仅允许5个EIP。这既是未关联的又是关联的。

  

弹性IP地址。 EC2-VPC的每个区域的弹性IP地址。 5.这是EC2-VPC中使用的弹性IP地址数量的限制。有关EC2-Classic的弹性IP地址,请参阅Amazon Elastic Compute Cloud(Amazon EC2)。

请参见http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html

您也许可以请求增加此服务限额。看到 https://aws.amazon.com/premiumsupport/knowledge-center/manage-service-limits/

本文链接:https://www.f2er.com/3121887.html

大家都在问