This message was deleted.
# general
s
This message was deleted.
c
Hi Jarek ... what output comes from pulumi config?
I'm specifically wondering if you tried to set pulumi config set nginx:isMinikube true as part of your config
m
Hi, in both cases, isMinikube true/false it's the same.
Copy code
error: Unable to read kubectl config: invalid configuration: no configuration has been provided
I suspect it might be something related to kubectl?
c
@mammoth-caravan-51104 we use the same configuration files as kubectl. Did you set that up?
The file is called a kubeconfig file, and by default it lives in ~/.kube/config
m
@creamy-potato-29402 right, i missed that. I'm on AWS, does it mean I need to setup EKS manually? I was hoping Pulumi handles that as well. Is it by design?
c
@mammoth-caravan-51104 Pulumi is just designed works anywhere
kubectl
works, but if you don’t already have a cluster, here’s an app where we boot up EKS and then run a helm chart on top of it, in the same app: https://github.com/pulumi/examples/tree/master/aws-ts-eks
If you’re all set up with pulumi/node/AWS you can just run
pulumi up
and it should “just work”
m
great, will try it out, thanks a lot!