Hacker News new | ask | show | jobs
by cbzbc 339 days ago
What are you planning on moving to ?
2 comments

I'm using either opentofu(terraform) or plain yaml. I'm not a huge fan of HCL but at least it is structured and easily manipulated without worrying about whitespace.
easily manipulated? How?
Probably kustomize, as my needs are simple. If I care to get fancy, I’m pondering giving Yoke a try.
I used kustomize to build an ArgoCD install at a previous company, and I was impressed at how powerful it was. Our setup was pretty involved, and kustomize was able to handle all the per-environment differences easily, and the code was easy to work with.
What's wrong with `kubectl apply -f xxx.yaml`?
We use kustomize because we have four environments that run basically the same stuff (dev with k3s, test, and two cloud regions). If we didn’t use kustomize, we’d be forced to reinvent it to avoid duplicating so much yaml.