An open API service indexing awesome lists of open source software.

https://github.com/aws-actions/amazon-eks-fargate

Creates an EKS on Fargate cluster
https://github.com/aws-actions/amazon-eks-fargate

amazon-eks aws-fargate

Last synced: about 1 year ago
JSON representation

Creates an EKS on Fargate cluster

Awesome Lists containing this project

README

          

## WIP: Amazon EKS on AWS Fargate GitHub Actions

This action allows to manage the lifecycle of an [Amazon EKS](https://aws.amazon.com/eks/) cluster running on [AWS Fargate](https://aws.amazon.com/fargate/).

NOTE: this is work in progress, not yet usable.

## Usage

In a GH Action file, for example, `.github/workflows/main.yaml`:

```
on: [push]

jobs:
create_cluster:
runs-on: ubuntu-latest
name: Create an EKS on Fargate cluster
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Provision cluster
uses: aws-actions/amazon-eks-fargate@v0.1
```

Once completed (after ca. 15min) connect to the EKS cluster by [updating your `kubeconfig`](https://docs.aws.amazon.com/eks/latest/userguide/create-kubeconfig.html).

## License

This project is licensed under the Apache-2.0 License.

## Security Disclosures

If you would like to report a potential security issue in this project, please do not create a GitHub issue. Instead, please follow the instructions [here](https://aws.amazon.com/security/vulnerability-reporting/) or [email AWS security directly](mailto:aws-security@amazon.com).