bright-policeman-55860
08/10/2020, 4:08 PMkubernetes.core.v1.Service.get("service", "kube-dns",
opts=pulumi.ResourceOptions(provider=kubernetes_provider))
This results in Preview failed: resource 'kube-dns' does not exist
But:
$ kubectl --kubeconfig /tmp/kubeconfig get svc -n kube-system kube-dns
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kube-dns ClusterIP 10.100.0.10 <none> 53/UDP,53/TCP 3d22h
And yes, my kubernetes_provider is using the kube-system
namespacegorgeous-egg-16927
08/10/2020, 4:29 PMget
call. Should be kube-system/kube-dns
in this casebright-policeman-55860
08/10/2020, 4:33 PMerror: Preview failed: 2 errors occurred:
* Resource 'kube-dns' was created but failed to initialize
* Service does not target any Pods. Selected Pods may not be ready, or field '.spec.selector' may not match labels on any Pods
It's the whole point of this exercise. I need to get the IP of the service so that I can redeploy and have the pods start. EKS is very silly in this Fargate exclusion limitation.gorgeous-egg-16927
08/10/2020, 4:41 PM.get
like that. I think that’s a bug.bright-policeman-55860
08/10/2020, 4:44 PMbillowy-army-68599
08/10/2020, 4:47 PMbright-policeman-55860
08/10/2020, 4:47 PMgorgeous-egg-16927
08/10/2020, 4:54 PM.get
failing a readiness check?bright-policeman-55860
08/10/2020, 6:29 PM