【发布时间】:2021-12-27 19:51:30
【问题描述】:
我正在尝试将 jpetstore 应用程序 (https://github.com/IBM-Cloud/jpetstore-kubernetes) 部署到 EKS 中的 kubernetes 中,但我无法解释此命令,因为它用于 IBM 云:
ibmcloud ks cluster get --cluster CLUSTER_NAME
如果我使用kubectl,那么 EKS 等价物是什么?
我使用以下 terraform 设置了 EKS:
provider "kubernetes" {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
}
命令可以检索端点吗?
【问题讨论】:
标签: amazon-web-services kubernetes terraform ibm-cloud kubectl