How do people manage the sometimes complex web of ...
# kubernetes
w
How do people manage the sometimes complex web of dependencies so that resource deletion works without timing out? ("timed out waiting to be Ready"); e.g. • install aws load balancer controller (albc) and kube prometheus stack (kps) via helm charts • configure kps values for ingress with alb annotations, so ingress creates an aws alb (and adds a finalizer) • kps effectively depends on albc and this must be explicit via pulumi otherwise you get the timeouts above Do people just carefully wire these dependencies explicitly, in which case how do you handle the inevitable circular dependencies?