terraform-hcloud-kube-hetzner
                                
                                 terraform-hcloud-kube-hetzner copied to clipboard
                                
                                    terraform-hcloud-kube-hetzner copied to clipboard
                            
                            
                            
                        Add recursive user manifests
see #1313
How to Test
- Create the following files inside of extra-manifests:
kustomization.yaml.tpl
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
  - subfolder
subfolder/kustomization.yaml.tpl
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
  - namespace.yaml
subfolder/namespace.yaml.tpl
apiVersion: v1
kind: Namespace
metadata:
  name: mynamespace
- 
Create a cluster using terrafom apply
- 
Check if the resource has been applied: kubectl get ns
--> It work's on my machine 🤣
@markusheinemann Thanks for this. Looking good. Please if you could tweak the docs for this, especially in the examples section in the readme and other relevant places (if this is mentioned there, like kube.tf), it would be great.
I have updated the related docs and updated the examples as well. I am happy about your feedback.
Actual the provided solution will not work due to https://github.com/hashicorp/terraform/issues/16330. I'm currently looking for a workaround
@markusheinemann What about now?
lgtm. I think the PR can be merged in my eyes. Can you please rerun the workflow?
PS. Sorry for closing the PR due to an oversight
Thanks again for this @markusheinemann, awesome!