Hi folks ! I’m curretly trying to setup a EKS Clus...
# getting-started
c
Hi folks ! I’m curretly trying to setup a EKS Cluster using Pulumi (Golang). I’m following this tutorial : https://www.pulumi.com/docs/get-started/aws/deploy-stack/ However I need to set custom availability zones in
us-east-1
. Can anyone point me to how I should go about doing it ? I’m mucking around right now trying to identify the right place to modify it VPC settings ?
b
set custom availability zones
for what? the EKS control plane or nodes? do you have any subnet defined?
c
@billowy-army-68599 I got through that issue, it seems like I had to either: 1. Muck around with the subnet creation 2. Identify my VPC
b
Your alternative is to use the default vpc but you have to specify subnets to make it multi az
c
Yeah the Default VPC has issues initializing things on
us-east-1e
no availability…
b
That’s an aws problem, nothing we can do about that
c
Yeah, I went in, created a new VPC and resolved this problem by identifying that one now I have this issue:
b
You’ll need to share you code to debug that
But the issue that you haven’t added label selectors to your pod
c
Hmm thats odd, I was just following this tutorial: https://www.pulumi.com/registry/packages/aws/how-to-guides/aws-go-eks/
Here’s the full code