wooden-toddler-96888
09/26/2018, 3:55 PMconst infra = setupEKS();
const website = deployWebsite(infra);
...
pulumi up
on my local box works perfectly. On travis, I get this:
* global global no change 1 error. error: Unable to read kubectl config: invalid configuration: no configuration has been provided
* aws:route53:Record <http://www.polyverse.com|www.polyverse.com> no change
* global global no change 1 error
Diagnostics:
global: global
error: Unable to read kubectl config: invalid configuration: no configuration has been provided
I don't understand what it means. I'm sure it had to do with some export I must have removed by accident.white-balloon-205
kubeconfig
cannot be found - meaning it isn't available in provider configuration and can't be found ambiently from the environment.
Are you providing configuration via new kubernetes.Provider(...)
?creamy-potato-29402
09/26/2018, 4:05 PMwhite-balloon-205
creamy-potato-29402
09/26/2018, 4:10 PMwooden-toddler-96888
09/26/2018, 4:14 PMcreamy-potato-29402
09/26/2018, 4:22 PM