在 terraform 中创建新集群后,我可以写一些东西来编辑 /.kube/config 文件吗?

Posted

技术标签:

【中文标题】在 terraform 中创建新集群后,我可以写一些东西来编辑 /.kube/config 文件吗?【英文标题】:can I write something to edit the /.kube/config file as soon as create a new cluster in terraform? 【发布时间】:2021-08-23 04:09:28 【问题描述】:

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
  config_path = local.kubectl_config_path
  config_context =  data.aws_eks_cluster.cluster.arn

##################################################################


data "aws_availability_zones" "available" 


locals 
  cluster_name = "Cluster-$random_string.suffix.result"
  kubectl_config_path = "C:/Users/User/.kube/config"

我想访问集群 无需自己编辑配置文件中的信息。

想知道我是否只能使用 terraform 来做到这一点 还是有其他方法?

谢谢

【问题讨论】:

【参考方案1】:

您无需提供

  config_path = local.kubectl_config_path
  config_context =  data.aws_eks_cluster.cluster.arn

当您提供了hostcluster_ca_certificatetoken。因此无需写入本地 kubeconfig 文件即可访问集群以使 terraform kubernetes 提供程序正常工作。

如果你想手动替换当前本地的kubeconfig文件来运行kubectl命令,你可以通过null-resource.local-exec`reference编写kubeconfig

【讨论】:

以上是关于在 terraform 中创建新集群后,我可以写一些东西来编辑 /.kube/config 文件吗?的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 SQL Workbench/J 在 Amazon Redshift 中创建新用户

比较重复值的唯一值后如何在excel中创建新列表

在数据库中创建新数据后更新 URLSession

在 Amazon RDS 环境中创建新的 MySQL 用户

Eclipse 没有在新建项目向导中创建新的 .java 文件?

使用 nth-child 或在 CSS 中创建新类?