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
- Host: GitHub
- URL: https://github.com/aws-actions/amazon-eks-fargate
- Owner: aws-actions
- License: apache-2.0
- Created: 2020-05-20T21:04:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-13T14:44:30.000Z (over 4 years ago)
- Last Synced: 2024-09-16T22:01:22.152Z (over 1 year ago)
- Topics: amazon-eks, aws-fargate
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 55
- Watchers: 5
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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).