找不到terraform kubectl提供程序

时间:2020-10-20 08:25:58

标签: kubernetes terraform kubectl terraform-provider-gcp

我正在尝试为terraform模块添加kubectl提供程序,并且遵循Terraform kubectl中的文档。我运行terraform init并成功安装了provider,但是当我尝试添加示例配置时,例如:(或here的代码)

resource "kubectl_server_version" "current" {}

并运行terraform plan我得到以下消息:

Error: Could not load plugin
Failed to instantiate provider "registry.terraform.io/hashicorp/kubectl" to
obtain schema: unknown provider "registry.terraform.io/hashicorp/kubectl"

当我调整terraform init时(资源已在模块k8s中放置)

Error: Failed to install provider

Error while installing hashicorp/kubectl: provider registry
registry.terraform.io does not have a provider named
registry.terraform.io/hashicorp/kubectl

一些输出:

$terraform plugins

├── provider[registry.terraform.io/hashicorp/kubernetes] 1.13.2
├── provider[registry.terraform.io/gavinbunney/kubectl] 1.9.1
├── module.k8s
│   ├── provider[registry.terraform.io/hashicorp/kubectl]
│   └── provider[registry.terraform.io/hashicorp/kubernetes]



$terraform init

Initializing modules...

Initializing the backend...

Initializing provider plugins...
- Using previously-installed hashicorp/kubernetes v1.13.2
- Using previously-installed gavinbunney/kubectl v1.9.1

$terraform -v

Terraform v0.13.4
  + provider registry.terraform.io/gavinbunney/kubectl v1.9.1
  + provider registry.terraform.io/hashicorp/kubernetes v1.13.2
  ....

一些配置文件:

terraform.tf

terraform {

  required_version  = "0.13.4"

  backend "gcs" {
    ...
  }

  required_providers {
    kubernetes = {
        source        = "hashicorp/kubernetes"
        version       = "1.13.2"
      }

    kubectl = {
      source          = "gavinbunney/kubectl"
      version         = "1.9.1"
    }
....

terraform成功地初始化了gavinbunney/kubectl提供程序,但是当我在k8s中添加resource "kubectl_manifest" ...时,module terraform正在尝试加载hashicorp/kubectl提供程序

我想念什么? :)

6 个答案:

答案 0 :(得分:1)

似乎问题出在同一模块中,我有resource "kubectl_server_version" "current" {}hashicorp/kubernetes资源中的其他资源,而terraform试图从kubectl加载hashicorp/kubectl。 / p>

当我在main.tf中添加gavinbunney/kubectl的资源时,一切正常:)

答案 1 :(得分:1)

就我而言,这是由于在模块中引用了 kubectl 资源,但该模块需要将提供程序添加到模块内的 required_providers

terraform {
  required_providers {
    kubectl = {
      source  = "gavinbunney/kubectl"
      version = "x.x.x"
    }
  }
}

答案 2 :(得分:0)

当我阅读文件cat .terraform/plugins/selections.json时,我感到该软件包的安装不正确。

在我的项目中,我做了:

cp -R .terraform/plugins/registry.terraform.io/gavinbunney/kubectl .terraform/plugins/registry.terraform.io/hashicorp

及之后:

terraform init

这种外观可以解决问题。

答案 3 :(得分:0)

给出的答案可以解决本地问题,但是在.terraform总是新鲜的管道中,您无法将gavinbunney / kubectl复制到hashicorp /中。在这种情况下,我们该怎么做才能解决这个问题? @ ARMP125

答案 4 :(得分:0)

要解决此问题,您可以查看 terrain state replace-provider Registry.terraform.io/hashicorp/kubectl gavinbunney / kubectl

答案 5 :(得分:0)

看来,如果你只留下 kubernetes provider,kubectl provider 工作得很好。意味着,不需要声明 kubernetes 和 kubectl 提供者。