How To Make Your AWS EKS Cluster Use Fargate Using Pulumi And Golang
Unlock the power of AWS Fargate in your EKS cluster with Pulumi! Seamlessly integrate serverless container management and eliminate the need for infrastructure provisioning. Dive into a cost-effective, hassle-free Kubernetes experience. #AWS #EKS #Fargate
At re:Invent, AWS introduced the ability to have EKS run pods on AWS Fargate, and Fargate is cheaper than hosting Kubernetes yourself. In the last post I created an EKS cluster, so let’s add this new capability to the cluster and remove the need to manage or provision infrastructure for our pods.
The complete project is available on GitHub.
Configuration
The minimum configuration for the Fargate profile is a name, the Kubenetes namespace it’ll work in, and the IAM role it needs to run the pods on AWS Fargate. The configuration below, which you can copy/paste into the YAML file from the previous blog, has three parameters. The parameter fargate:profile-name
is the name of the Fargate profile, the parameter fargate:namespace
is the Kubernetes namespace, and fargate:execution-role-arn
is the ARN of the IAM role. For more details on how to create the role, check out the AWS docs.
fargate:profile-name: EKSFargateProfile
fargate:namespace: example
fargate:execution-role-arn: "arn:aws:iam::ACCOUNTID:role/EKSFargatePodExecutionRole"
You can either use the command line, like pulumi config set fargate:profile-name "EKSFargateProfile"
to add these new configuration variables, or you can add them directly into the yaml file. The yaml file with all the configuration is called Pulumi.<name of your project>.yaml
.
Adding the Fargate profile
The code below is an extension from the code created in the previous post. So you can copy/paste this snippet into your Go code too. Walking through the code, it gets the name of the profile and the namespace from the YAML file. The fargateProfileArgs
the name of the cluster and subnets from previous blog posts so check those out if you haven’t already. The call to eks.NewFargateProfile()
adds the Fargate profile to your EKS cluster.
// Create an EKS Fargate Profile
fargateProfileName := getEnv(ctx, "fargate:profile-name", "unknown")
selectors := make([]map[string]interface{}, 1)
namespaces := make(map[string]interface{})
namespaces["namespace"] = getEnv(ctx, "fargate:namespace", "unknown")
selectors[0] = namespaces
fargateProfileArgs := &eks.FargateProfileArgs{
ClusterName: clusterName,
FargateProfileName: fargateProfileName,
Tags: tags,
SubnetIds: subnets["subnet_ids"],
Selectors: selectors,
PodExecutionRoleArn: getEnv(ctx, "fargate:execution-role-arn", "unknown"),
}
fargateProfile, err := eks.NewFargateProfile(ctx, fargateProfileName, fargateProfileArgs)
if err != nil {
fmt.Println(err.Error())
return err
}
ctx.Export("FARGATE-PROFILE-ID", fargateProfile.ID())
Running the code
Like the previous time, the last thing to do is run pulumi up
to tell Pulumi to go add the Fargate profile to your EKS cluster! If you’re using the same project and stack, Pulumi will automatically realize it needs to add the profile to the existing cluster and won’t create a new EKS cluster.
$ pulumi up
Previewing update (builderstack):
Type Name Plan
pulumi:pulumi:Stack builder-builderstack
+ โโ aws:eks:FargateProfile EKSFargateProfile create
Outputs:
+ FARGATE-PROFILE-ID: output<string>
Resources:
+ 1 to create
5 unchanged
Do you want to perform this update? yes
Updating (builderstack):
Type Name Status
pulumi:pulumi:Stack builder-builderstack
+ โโ aws:eks:FargateProfile EKSFargateProfile created
Outputs:
CLUSTER-ID : "myEKSCluster"
+ FARGATE-PROFILE-ID: "myEKSCluster:EKSFargateProfile"
SUBNET-IDS : [
[0]: "subnet-0a1909bec2e936bd7"
[1]: "subnet-09d229c2eb8061979"
]
VPC-ID : "vpc-0437c750acf1050c3"
Resources:
+ 1 created
5 unchanged
Duration: 2m27s
Permalink: https://app.pulumi.com/retgits/builder/builderstack/updates/4
The permalink at the bottom of the output takes you to the Pulumi console where you can see all the details of the execution of your app and the resources that were created.
Cover image by Gerd Altmann from Pixabay