Decouple etcd/k8s-cluster roles in ec2 terraform
Currently, the terraform script in contrib adds etcd role as a child of k8s-cluster in its generated inventory file. This is problematic when the etcd role is deployed on separate nodes from the k8s master and nodes. In this case, this leads to failures of the k8s node since the PKI certs required for that role have not been propogated.
This commit is contained in:
parent
1204eaccb1
commit
ece09765b9
1 changed files with 1 additions and 1 deletions
|
@ -32,6 +32,6 @@ resource "null_resource" "ansible-provision" {
|
|||
}
|
||||
|
||||
provisioner "local-exec" {
|
||||
command = "echo \"\n[k8s-cluster:children]\nkube-node\nkube-master\netcd\" >> inventory"
|
||||
command = "echo \"\n[k8s-cluster:children]\nkube-node\nkube-master\" >> inventory"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue