You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get an error during the first terraform apply. Then this error appears during the plan
`Error: failed to execute ".terraform/modules/cluster.cluster/scripts/kubeadm-token.sh": .terraform/modules/cluster.cluster/scripts/kubeadm-token.sh: line 6: jq: command not found
ssh: Could not resolve hostname : Name or service not known
on .terraform/modules/cluster.cluster/controller.tf line 59, in data "external" "kubeadm_join":
59: data "external" "kubeadm_join" {
Error: failed to execute ".terraform/modules/cluster.cluster/scripts/gateway.sh": .terraform/modules/cluster.cluster/scripts/gateway.sh: line 6: jq: command not found
ssh: Could not resolve hostname : Name or service not known
.terraform/modules/cluster.cluster/scripts/gateway.sh: line 13: jq: command not found
on .terraform/modules/cluster.cluster/nodes.tf line 80, in data "external" "private_ipv4_gateway":
80: data "external" "private_ipv4_gateway" {`
I get an error during the first terraform apply. Then this error appears during the plan
`Error: failed to execute ".terraform/modules/cluster.cluster/scripts/kubeadm-token.sh": .terraform/modules/cluster.cluster/scripts/kubeadm-token.sh: line 6: jq: command not found
ssh: Could not resolve hostname : Name or service not known
on .terraform/modules/cluster.cluster/controller.tf line 59, in data "external" "kubeadm_join":
59: data "external" "kubeadm_join" {
Error: failed to execute ".terraform/modules/cluster.cluster/scripts/gateway.sh": .terraform/modules/cluster.cluster/scripts/gateway.sh: line 6: jq: command not found
ssh: Could not resolve hostname : Name or service not known
.terraform/modules/cluster.cluster/scripts/gateway.sh: line 13: jq: command not found
on .terraform/modules/cluster.cluster/nodes.tf line 80, in data "external" "private_ipv4_gateway":
80: data "external" "private_ipv4_gateway" {`
Terraform 12.28
Module configurations:
`module "cluster" {
source = "github.com/packet-labs/kubernetes-bgp"
auth_token = var.AUTH_TOKEN
organization_id = var.org_id
project_name = "ingestion"
facilities = ["ams1"]
controller_plan = "c1.small.x86"
worker_plan = "c1.small.x86"
worker_count = 1
docker_version = "19.03.10"
kubernetes_version = "1.18.3"
kubernetes_port = "6443"
kubernetes_dns_ip = "192.168.0.10"
kubernetes_cluster_cidr = "172.16.0.0/12"
kubernetes_service_cidr = "192.168.0.0/16"
kubernetes_dns_domain = "cluster.local"
}`
The text was updated successfully, but these errors were encountered: