2

我有一个问题,我在从Kubespray项目构建模块时陷入困境。

我有以下文件夹结构:

terraform/
modules/
   kubespray/
      modules/
         compute/
         ips/
         network/
      main.tf
      variables.tf
roles/
    kubespray/
        terraform_setup/
             main.tf

kubespray/main.tf模块中传递了一些变量:

module "ips" {
  source = "./modules/ips"

  number_of_k8s_masters         = "${var.number_of_k8s_masters}"
  number_of_k8s_masters_no_etcd = "${var.number_of_k8s_masters_no_etcd}"
  number_of_k8s_nodes           = "${var.number_of_k8s_nodes}"
  floatingip_pool               = "${var.floatingip_pool}"
  number_of_bastions            = "${var.number_of_bastions}"
  external_net                  = "${var.external_net}"
  network_name                  = "${var.network_name}"
  router_id                     = "${module.network.router_id}"
}

module "compute" {
  source = "./modules/compute"
  ...
  k8s_master_fips                              = "${module.ips.k8s_master_fips}"
  k8s_master_no_etcd_fips                      = "${module.ips.k8s_master_no_etcd_fips}"
  k8s_node_fips                                = "${module.ips.k8s_node_fips}"
  bastion_fips                                 = "${module.ips.bastion_fips}"
  ...
}
output "private_subnet_id" {
  value = "${module.network.subnet_id}"
}

output "floating_network_id" {
  value = "${var.external_net}"
}

output "router_id" {
  value = "${module.network.router_id}"
}

output "k8s_master_fips" {
  value = "${concat(module.ips.k8s_master_fips, module.ips.k8s_master_no_etcd_fips)}"
}

output "k8s_node_fips" {
  value = "${module.ips.k8s_node_fips}"
}

output "bastion_fips" {
  value = "${module.ips.bastion_fips}"
}

如果我从子模块内部运行我的 terraform init/applymodules/kubespray/它工作正常

如果我从我那里role/kubespray

module "kubespray" {
  source    = "../../../modules/kubespray"
  providers = {
    openstack.src = openstack
  }
}

它失败了

错误:无效索引

在 ../../../modules/kubespray/modules/compute/main.tf 第 670 行,资源“openstack_compute_floatingip_associate_v2”“k8s_node”:670:floating_ip =“${var.k8s_node_fips[count.index]}” |---------------- | count.index 为 0 | var.k8s_node_fips 是动态的空列表

帮助将非常感激

4

2 回答 2

2

当您运行时terraform,该目录将成为一个隐含的“根模块”。正如输入变量文档中解释的那样,根模块可以从 CLI 或环境访问 TF 输入,但所有其他被调用的模块都需要传入这些。

我假设正在发生的事情可能是您的~kubespray/variables.tf输入变量分配了默认值,这些值正在生效。如果是这种情况,那么这些应该被复制~terraform_setup/variables.tf并传递到调用模块:

module "kubespray" {
  source    = "../../../modules/kubespray"
  providers = {
    openstack.src = openstack
  }
}
于 2020-02-02T09:56:02.763 回答
0

在不询问更多信息的情况下,我的猜测是,您在 ( ${var.k8s_node_fips[count.index]}) 中传递了一个空数组,其值大于 0 for var.node_root_volume_size_in_gband var.number_of_k8s_nodes_no_floating_ip,在尝试为资源声明所需的字符串索引空数组时导致错误。

Error: Invalid index

on ../../../modules/kubespray/modules/compute/main.tf line 670, in resource "openstack_compute_floatingip_associate_v2" "k8s_node": 670: floating_ip = "${var.k8s_node_fips[count.index]}" |---------------- | count.index is 0 | var.k8s_node_fips is empty list of dynamic

根据错误,这似乎是${var.k8s_node_fips[count.index]}. 看起来正在发生的是变量为空,但count设置为非零数,从而导致TF错误输出。

查看原始项目代码,似乎count变量依赖var.node_root_volume_size_in_gb为 0 设置为 0;否则会将计数设置为 的值var.number_of_k8s_nodes_no_floating_ip

错误似乎发生在以下位置的片段:

resource "openstack_compute_instance_v2" "k8s_node_no_floating_ip_custom_volume_size" {
  name              = "${var.cluster_name}-k8s-node-nf-${count.index+1}"
  count             = "${var.node_root_volume_size_in_gb > 0 ? var.number_of_k8s_nodes_no_floating_ip : 0}"
  availability_zone = "${element(var.az_list, count.index)}"
  image_name        = "${var.image}"
  flavor_id         = "${var.flavor_k8s_node}"
  key_pair          = "${openstack_compute_keypair_v2.k8s.name}"

  block_device {
    uuid                  = "${data.openstack_images_image_v2.vm_image.id}"
    source_type           = "image"
    volume_size           = "${var.node_root_volume_size_in_gb}"
    boot_index            = 0
    destination_type      = "volume"
    delete_on_termination = true
  }

希望这可以帮助

于 2020-01-30T23:07:14.637 回答