Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,28 @@ Pure Bash, zero-deps kubectl version manager with fast shims and tfenv-style UX.

### Quick install (recommended)

Install into `~/.kctl-env`:
Pin a specific version for security and reproducibility:

```sh
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/v0.1.1/install.sh | bash -s -- v0.1.1
```

If you’re testing from a feature branch, replace `main` in the URL and pass the branch name as the ref:
### Development/unstable install

Install the latest development version from `main` (not recommended for production):

```sh
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/feat/easy-install/install.sh | bash -s -- feat/easy-install
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/main/install.sh | bash
```

Pin a specific version (recommended for reproducibility):
For testing from a feature branch, replace `main` in the URL and pass the branch name as the ref:

```sh
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/main/install.sh | bash -s -- v0.1.1
curl -fsSL https://raw.githubusercontent.com/senet/kctl-env/feat/easy-install/install.sh | bash -s -- feat/easy-install
```

### Manual installation

1. Clone or extract kctl-env to a directory (e.g., `~/.kctl-env`).
2. Add the `bin/` directory to your `PATH`:

Expand Down