EKS 集群 - 没有到主机的路由 - 私有集群

时间:2021-01-07 14:38:37

标签: kubernetes

如何从我的笔记本电脑连接到 EKS 私有集群?我已启用 endpoint_private_access

但是我收到以下错误。会不会是安全组问题?

Unable to connect to the server: dial tcp 10.0.0.123:443: connect: no route to host

resource "aws_eks_cluster" "main" {
  name      = var.eks_cluster_name
  role_arn  = aws_iam_role.eks_cluster.arn

  vpc_config {
    subnet_ids              = concat(var.public_subnet_ids, var.private_subnet_ids)
    security_group_ids      = [aws_security_group.eks_cluster.id, aws_security_group.eks_nodes.id, aws_security_group.external_access.id]
    endpoint_private_access = true
    endpoint_public_access  = false
  }

  # Ensure that IAM Role permissions are created before and deleted after EKS Cluster handling.
  # Otherwise, EKS will not be able to properly delete EKS managed EC2 infrastructure such as Security Groups.

  depends_on = [
    "aws_iam_role_policy_attachment.aws_eks_cluster_policy",
    "aws_iam_role_policy_attachment.aws_eks_service_policy"
  ]
}
~

0 个答案:

没有答案