https://pulumi.com logo
a

adorable-sugar-92867

01/14/2020, 9:29 AM
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

elegant-dress-88912

01/14/2020, 10:07 AM
why do you think it's not idempotent?
a

adorable-sugar-92867

01/14/2020, 11:09 AM
I see. Thanks, I’ll try to recreate everything with Pulumi
9 Views