Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toricls/asdf-eks-kubectl
"Amazon EKS vended" kubectl plugin for the asdf version manager
https://github.com/toricls/asdf-eks-kubectl
amazon-eks asdf-plugin kubectl
Last synced: 8 days ago
JSON representation
"Amazon EKS vended" kubectl plugin for the asdf version manager
- Host: GitHub
- URL: https://github.com/toricls/asdf-eks-kubectl
- Owner: toricls
- License: mit
- Created: 2021-06-15T06:18:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-25T13:14:46.000Z (over 3 years ago)
- Last Synced: 2024-11-06T17:58:40.901Z (about 2 months ago)
- Topics: amazon-eks, asdf-plugin, kubectl
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-eks-kubectl
Amazon EKS vended kubectl plugin for [asdf](https://github.com/asdf-vm/asdf) version manager
## Install
```
asdf plugin-add kubectl https://github.com/toricls/asdf-eks-kubectl.git
```If you'd like use both this plugin and [`asdf-kubectl`](https://github.com/asdf-community/asdf-kubectl) then install the plugin under a different name such as `eks-kubectl`.
```
asdf plugin-add eks-kubectl https://github.com/toricls/asdf-eks-kubectl.git
```## Prerequisites
- jq
## Usage
List all available versions:
```
asdf list-all kubectl
```Install and point specific EKS-vended kubectl version:
```
# Install
asdf install kubectl 1.20.4# Set version
asdf global kubectl 1.20.4
```Use `eks-kubectl` instead of `kubectl` if you installed the plugin with different name such as `eks-kubectl`.
See also the [asdf documentation](https://asdf-vm.com/#/core-manage-versions?id=install-version) for more instructions.
## Acknowledgement
This plugin was created based on [asdf-community/asdf-kubectl](https://github.com/asdf-community/asdf-kubectl).