worried-xylophone-86184
06/16/2022, 2:34 AMerror: configured Kubernetes cluster is unreachable: unable to load schema information from the API server: Get "<https://URL.eks.amazonaws.com/openapi/v2?timeout=32s>": dial tcp 10.1.3.211:443: i/o timeout
billowy-army-68599
worried-xylophone-86184
06/16/2022, 4:39 AMeks_cluster = eks.Cluster(
cluster_name,
name=cluster_name,
private_subnet_ids=list(private_subnets.values()),
tags={"Name": cluster_name, "Stack": stack_name},
vpc_id=vpc_id,
version="1.21",
instance_role=eks_ec2_role,
endpoint_public_access=False,
endpoint_private_access=True,
node_associate_public_ip_address=True,
skip_default_node_group=True,
)
node_group = eks.ManagedNodeGroup(
node_group_name,
cluster=eks_cluster.core,
capacity_type="SPOT",
instance_types=["t3a.medium"],
node_group_name=node_group_name,
node_role=eks_ec2_role,
tags={"Name": cluster_name, "Stack": stack_name},
subnet_ids=list(private_subnets.values()),
scaling_config=pulumi_aws.eks.NodeGroupScalingConfigArgs(
desired_size=1,
min_size=1,
max_size=3,
),
)
billowy-army-68599
worried-xylophone-86184
06/16/2022, 3:32 PMpolite-napkin-90098
06/16/2022, 4:52 PMbillowy-army-68599