Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hden/eks-static-ip
Assign static external IPs to EKS nodes.
https://github.com/hden/eks-static-ip
Last synced: 28 days ago
JSON representation
Assign static external IPs to EKS nodes.
- Host: GitHub
- URL: https://github.com/hden/eks-static-ip
- Owner: hden
- License: apache-2.0
- Created: 2019-03-22T08:14:55.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T14:57:22.000Z (about 1 year ago)
- Last Synced: 2024-10-03T12:16:42.388Z (3 months ago)
- Language: Clojure
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eks-static-ip[![CircleCI](https://circleci.com/gh/hden/eks-static-ip/tree/master.svg?style=svg)](https://circleci.com/gh/hden/eks-static-ip/tree/master)
Assign static external IPs to EKS nodes.## Usage
1. You will need to configure several static eips, identified by a common tag e.g. `EKS-NODE-POOL=foo`.
2. Configure worker nodes (a.k.a. node pool) with a common tag e.g. `EKS-IP-POOL=bar`.
3. Build bt running `make`.
4. Deploy this library to lambda by uploading the `eks-static-ip-0.1.0-standalone.jar`.
- Handler: `eks.StaticIPHandler::handleRequest`
- Runtime: `java8`
5. Configure the lambda with the following environmental variables:
- `INETANCE_TAG_KEY` e.g. `EKS-NODE-POOL`
- `INETANCE_TAG_VALUE` e.g. `foo`
- `EIP_TAG_KEY` e.g. `EKS-IP-POOL`
- `EIP_TAG_VALUE` e.g. `bar`Trigger the lambda chronically e.g. by CloudWatch Events.