Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] Fargate for EKS #609

Closed
2 of 4 tasks
chenrui333 opened this issue Dec 4, 2019 · 13 comments · Fixed by #1067
Closed
2 of 4 tasks

[feature] Fargate for EKS #609

chenrui333 opened this issue Dec 4, 2019 · 13 comments · Fixed by #1067

Comments

@chenrui333
Copy link
Contributor

chenrui333 commented Dec 4, 2019

I have issues

I'm submitting a...

  • bug report
  • feature request
  • support request - read the FAQ first!
  • kudos, thank you, warm fuzzy

new announcement

https://aws.amazon.com/about-aws/whats-new/2019/12/run-serverless-kubernetes-pods-using-amazon-eks-and-aws-fargate/

Run Serverless Kubernetes Pods Using Amazon EKS and AWS Fargate
Posted On: Dec 3, 2019

You can now use Amazon Elastic Kubernetes Service (EKS) to run Kubernetes pods on AWS Fargate, the serverless compute engine built for containers on AWS. This makes it easier than ever to build and run your Kubernetes applications in the AWS cloud.

EKS support for Fargate is available in US East (Virginia), US East (Ohio), Europe (Ireland), and Asia Pacific (Tokyo) regions.

Related AWS container-roadmap issue

aws/containers-roadmap#32 (comment)

@chenrui333 chenrui333 changed the title fargate for EKS [feature] Fargate for EKS Dec 4, 2019
@max-rocket-internet
Copy link
Contributor

How does this look from a Terraform perspective? What new resources?

@chenrui333
Copy link
Contributor Author

Yeah, I dont know quite much at this moment either.

@dpiddockcmp
Copy link
Contributor

Provider 2.41.0 added aws_eks_fargate_profile.

These need a suitable IAM role to be created: docs

We could also handle a map of profile name to namespace and labels, and create the profiles in a for_each.

@ivankatliarchuk
Copy link
Contributor

There is currently a limitation. Not every region support it.

If you want to explore Amazon EKS on AWS Fargate yourself, you can try it now by heading on over to the EKS console in the following regions: US East (N. Virginia), US East (Ohio), Europe (Ireland), and Asia Pacific (Tokyo). (reference)

@marcust
Copy link

marcust commented Jan 13, 2020

AWS tracks the roll-out progress in their public roadmap: aws/containers-roadmap#620

@rblaine95
Copy link
Contributor

rblaine95 commented Mar 13, 2020

I'd just like to toss in a +1 for this feature request.

Been banging my head against adding Fargate to EKS via Terraform for the last day or so, modding other Terraform modules (terraform-module/eks-fargate-profile/aws) to accept list(string) instead of just string for Namespaces and then working the compatibility of that, resulting in a mild migraine.

Edit:
aws/containers-roadmap#621 is tracking wildcard support for Fargate Namespaces

Edit 2:
It looks like you can only create Fargate profiles so long as no other profile is in a CREATING status.

The module will either need to create a single Fargate profile which watches multiple Namespaces by using the aws_cloudformation_stack resource (because the aws_eks_fargate_profile resource only supports a single Namespace string argument) or it will need to wait for each previous Fargate profile status to be ACTIVE before creating the next profile.

@barryib barryib linked a pull request May 6, 2020 that will close this issue
2 tasks
@stale
Copy link

stale bot commented Jun 15, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Jun 15, 2020
@ImIOImI
Copy link

ImIOImI commented Jun 25, 2020

I'm really interested in seeing fargate profiles added as well.

@stale stale bot removed the stale label Jun 25, 2020
@Vlli
Copy link

Vlli commented Sep 16, 2020

This would be extremly useful.

@xposix
Copy link

xposix commented Oct 26, 2020

Adding Fargate on a deployment only requires few lines of code, it's very quick, this is mine:

module "eks_fargate" {
  source  = "terraform-module/eks-fargate-profile/aws"
  version = "2.2.5"

  cluster_name = data.terraform_remote_state.eks_cluster.outputs.cluster_id
  subnet_ids   = data.aws_subnet_ids.private.ids
  namespaces = [
    "jenkins"
  ]
  labels = {
    "app.kubernetes.io/name" = "jenkins-fargate-slaves"
  }
  tags = local.project_tags
}

I totally understand that argument where people would like to keep the module simple, otherwise they become a mess.

@barryib barryib linked a pull request Nov 2, 2020 that will close this issue
2 tasks
@barryib
Copy link
Member

barryib commented Nov 2, 2020

The PR #1067 add fargate support. We need reviewers and help for tests.

@barryib barryib pinned this issue Nov 2, 2020
@barryib
Copy link
Member

barryib commented Nov 7, 2020

v13.2.0 is released with the EKS fargate support.

@barryib barryib unpinned this issue Nov 7, 2020
@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 23, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
10 participants