Out of curiosity, can Pulumi provision a k8s clust...
# general
f
Out of curiosity, can Pulumi provision a k8s cluster and deploy services to said cluster?
m
Yep!
That is a component that creates an EKS cluster in AWS and deploys k8s resources to the same.
f
Woah, awesome! starts considering switching from ECS
m
You can try this out with
pulumi up <https://github.com/pulumi/apps/eks>
g
m
Or
pulumi new <https://github.com/pulumi/apps/eks>
, which will clone the source locally
g
https://blog.pulumi.com/program-kubernetes-with-11-cloud-native-pulumi-pearls has a bunch of examples. Easy wins include importing existing YAML and/or Helm charts and letting Pulumi manage the resources.
f
Can the cluster be deployed to an existing VPC?
g
m
Likewise for EKS
👍 1
f
BTW, this question was provoked by reading this https://pulumi.io/quickstart/kubernetes/setup.html. Under step 1 in Pre-requisites, it doesn't say you can use Pulumi to do this. I would've expected it to link to a doc showing that Pulumi can do this too 🙂
g
Great point! We'll update the doc to reflect that. 🙂