我正在使用以下身份验证设置创建这样的 GKE 集群:
master_auth {
# Setting an empty username and password explicitly disables basic auth
username = ""
password = ""
# Whether client certificate authorization is enabled for this cluster.
client_certificate_config {
issue_client_certificate = false
}
}
创建集群后,我将使用另一个提供程序来安装 helm 图表:
provider "helm" {
kubernetes {
host = ...
}
tiller_image = "gcr.io/kubernetes-helm/tiller:v2.14.1"
}
我的问题是如何kubernetes
用可能从集群创建步骤获得的身份验证信息填充块?