-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add command to manipulate IAM identity mappings
Adds the following commands to get/create/delete IAM role mappings to Kubernetes username and groups. eksctl get iamidentitymapping [--role arn] eksctl create iamidentitymapping --role <arn> [--username=USER] --group=GROUP0 [--group=GROUP1] eksctl delete iamidentitymapping --role <arn> [--all] `eksctl get iamidentitymapping` Returns all mappings; if role filter is given it returns all matching roles (can be more than one). `eksctl create iamidentitymapping` Allows creating duplicates. Will warn if duplicates exist. `eksctl delete iamidentitymapping` Deletes a single mapping FIFO unless `--all` is given in which case it removes all matching. Will warn if more mappings matching this role are found.
- Loading branch information
Showing
12 changed files
with
540 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.