Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reegnz/eks-iam-admission-webhook
https://github.com/reegnz/eks-iam-admission-webhook
aws eks iam kubernetes kubernetes-admission-webhook
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/reegnz/eks-iam-admission-webhook
- Owner: reegnz
- Created: 2019-12-20T12:14:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T17:27:24.000Z (12 months ago)
- Last Synced: 2024-04-21T00:15:50.000Z (8 months ago)
- Topics: aws, eks, iam, kubernetes, kubernetes-admission-webhook
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EKS IAM Role identity webhook
This is a proof of concept reimplementing
https://github.com/aws/amazon-eks-pod-identity-webhook/ in python.I wanted to learn how to write an admission controller in a language other
than go. ;)## Installation
Generate certificate for the admission controller:
```
./create-certificate.sh eks-iam-admission-controller default
```Register webhook with generated certificate:
```
cat webhook-config.yaml | ./template-cert.sh | kubectl apply -f -
```Deploy webhook:
```
skaffold run
```