Hello, being new to Pulumi I’m impressed by it’s p...
# general
a
Hello, being new to Pulumi I’m impressed by it’s potential as far as I thing I understand it. So deep diving I set out to create a k8s cluster on digital ocean. Got a long way with by implementing this https://www.digitalocean.com/community/tutorials/how-to-set-up-an-nginx-ingress-with-cert-manager-on-digitalocean-kubernetes tutorial in Pulumi code. However the final letsencrypt step is a bit too long to implement to convert. Luckily I found a way to run those yaml’s from Pulumi (
new ConfigFile(name, {file: https://...})
), but unfortunatly that does not seem to be idempotent… Is there a better ‘Pulumi’ way to create the needed k8s resources inside
Copy code
<https://github.com/jetstack/cert-manager/releases/download/v0.12.0/cert-manager.yaml>
?
e
why do you think it's not idempotent?
a
I see. Thanks, I’ll try to recreate everything with Pulumi