flat-insurance-25294
12/29/2019, 6:58 AMstatic get()
but there is no way of knowing the name of the ALB created.
Another approach is to print the ingress using kubectl and use the address with
https://github.com/pulumi/pulumi-query-kubernetes
But the question is, is it lazy? As if will it wait until the cluster has been setup?white-balloon-205
ingress.status.loadBalancer.ingress[0].hostname
off of the ingress object?flat-insurance-25294
12/29/2019, 7:33 AMwhite-balloon-205
ingress
object that created with on your behalf (if it's from Helm, getResource
on the chart).
If ALB Ingress allows your to bring-your-own-ALB, that definitely gives you much more control (I wish more Kubernetes things were like that).flat-insurance-25294
12/29/2019, 7:38 AMstatus.loadBalancer.ingress[0].hostname
is the same as calling kubectl get ingress …
and reading the address on it?
Fyi you might want to update https://www.pulumi.com/blog/kubernetes-ingress-with-aws-alb-ingress-controller-and-pulumi-crosswalk/
as its using deprecated parts of the k8 extension.white-balloon-205
flat-insurance-25294
12/29/2019, 2:44 PMwhite-balloon-205
flat-insurance-25294
12/29/2019, 2:44 PMwhite-balloon-205
flat-insurance-25294
12/29/2019, 2:51 PMnew k8s.extensions.v1beta1.Deployment
is marked deprecated by you, not by K8.k8s.extension
is deprecated.white-balloon-205