We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
civo_kubernetes_cluster
First created a civo_kubernetes_cluster resource using the following tf file:
resource "civo_kubernetes_cluster" "my-cluster" { name = "my-cluster" num_target_nodes = 3 target_nodes_size = "g3.k3s.xsmall" }
Then updated the num_target_nodes field to 5 and applied again.
num_target_nodes
5
resource "civo_kubernetes_cluster" "my-cluster" { name = "my-cluster" num_target_nodes = 5 target_nodes_size = "g3.k3s.xsmall" }
Expected to see 5 nodes on the cluster. But it only scales up to 4 and the terraform apply command returns successfully.
terraform apply
The text was updated successfully, but these errors were encountered:
I can confirm this issue happened to me as well. But not when I'm using Civo.com web UI. I will take a look.
Sorry, something went wrong.
@alejandrojnm - I need your pointers here. What possibly could go wrong here?
zulh-civo
Successfully merging a pull request may close this issue.
First created a
civo_kubernetes_cluster
resource using the following tf file:Then updated the
num_target_nodes
field to5
and applied again.Expected to see 5 nodes on the cluster. But it only scales up to 4 and the
terraform apply
command returns successfully.The text was updated successfully, but these errors were encountered: