-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
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
Tf-runner pod not created, kind Terraform stuck in "Reconciliation in progress" #1427
Comments
I found a new element. Commenting the |
Anyone ? I still have the issue: I have to apply my kind Terraform without any |
Hello @manicole , |
Hi @akselleirv, thanks for reacting. Actually I am still trying to solve a problem, and thought it was the way. I install k3s with k3sup (i.e. using ssh) and ouput the kubeconfig from the Terraform plan: # outputs.tf
data "local_file" "kubeconfig_file" {
filename = "${var.instance_kubeconfig_folder}/${var.instance_kubeconfig_file}"
depends_on = [null_resource.k3s]
}
output "kubeconfig_file" {
description = "kubeconfig to access k3s cluster"
value = nonsensitive(data.local_file.kubeconfig_file.content)
} I get the following error, and thought mounting tmp would be enough but it is not:
This might be another issue to solve for me, but I believe it has no consequences on the problem here. |
Hi all,
I'm trying to deploy a kind Terraform via a kind Kustomization, but often no tf-runner is created and my Terraform stays stuck in "Reconciliation in progress" state.
I'm trying to deploy this Kustomization:
In
gitrepo/k3s/manifests
, there is only my kind Terraform:What happens:
k3s
, although I would expect ak3s-tf-runner
to be deployed...Additionnal info:
I deploy plenty of Kustomization files, and do not have any problem with the others.
Sometimes by chance (non reproducible pattern) a
k3s-tf-runner
is created and everything works fine till the end ; a few hours later, in spite of the argalwaysCleanupRunnerPod: false
, thek3s-tf-runner
disappears ... and I can't create it back.I can't find any clue of what's happening in tf-controller logs nor in namespace events.
All my kind Terraform does (
gitrepo/k3s/terraform/main.tf
) is a local exec:Thanks in advance for helping :)
The text was updated successfully, but these errors were encountered: