icy-controller-6092
03/15/2025, 10:38 PM.spec.externalName
) as an input to the next set of resources to deploy. something that might work is this, but i feel like there could be an easier solution / resource option I'm missing?
const egress = new k8s.core.v1.Service(X)
const wait = new local.Command('sleep 5', { dependsOn: [egress] })
const egressUpdated = Service.get(id=X, { dependsOn: [wait] })
gray-ambulance-59402
03/15/2025, 11:35 PMicy-controller-6092
03/15/2025, 11:49 PMlocal.Command
will also not re-run if the create command doesn't change, ie. it would only sleep again if you change how long to sleep forgray-ambulance-59402
03/16/2025, 5:43 AMlittle-cartoon-10569
03/16/2025, 6:56 PM