Hello guys! Simple question :raising_hand: I wan...
# general
f
Hello guys! Simple question 🙋 I wanna use pulimi to adjust my existing GKE kunernets, it means, minimum, maximum and limits... Some one has any exemple or ideia for helping me to start?
w
You would first need to import the cluster to be managed by Pulumi. See https://www.pulumi.com/docs/guides/adopting/import/. You could then update the infrastructure by making changes in Pulumi. Note that the resource(s) will be completely managed by Pulumi, so (a) if you destroy them in Pulumi it will delete the cluster (so you may want to
protect
the resource) and (b) if you continue to also make changes to the cluster outside Pulumi, you will need to
refresh
to ensure Pulumi stays consistent with those changes.
f
Thank you Luke