indev
A command-line interface for managing Intility Developer Platform resources.
Installation
Homebrew (macOS)
brew install intility/tap/indev
Windows / Linux
Download the latest release for your platform from the GitHub Releases page. Extract the archive and add the binary to your PATH.
From Source
Requires Go 1.25 or higher.
git clone https://github.com/intility/indev.git
cd indev
go build -o indev ./cmd/indev
Prerequisites
Some commands require additional tools to be installed:
Usage
Authentication
Log in to the Intility Developer Platform:
indev login
Log out:
indev logout
View your account information:
indev account show
Cluster Management
Create a new Kubernetes cluster:
indev cluster create
You can also specify options directly:
indev cluster create --name my-cluster --preset balanced --nodes 4
With autoscaling enabled:
indev cluster create --name my-cluster --preset performance --enable-autoscaling --min-nodes 2 --max-nodes 6
Available node presets: minimal, balanced, performance
List your clusters:
indev cluster list
Get details for a specific cluster:
indev cluster get --name <cluster-name>
Check cluster status:
indev cluster status --name <cluster-name>
Log in to a cluster (requires oc):
indev cluster login --name <cluster-name>
Open the cluster in the web console:
indev cluster open --name <cluster-name>
Delete a cluster:
indev cluster delete --name <cluster-name>
Team Management
List teams:
indev team list
Create a new team:
indev team create --name <team-name>
Add a member to a team:
indev team member add --team <team-name> --user <user-email>
Remove a member from a team:
indev team member remove --team <team-name> --user <user-email>
User Management
List users:
indev user list
Shell Completions
Shell completions are installed automatically via Homebrew. For manual installation, run indev completion --help for instructions.
Telemetry
indev collects anonymous usage data to help improve the tool. This includes command usage, performance metrics, and error reports. No personally identifiable information is collected.
To opt out, set the environment variable:
export DO_NOT_TRACK=1
Contributing
This project is not currently accepting external contributions. However, we welcome feedback from the community. If you encounter a bug or have a feature request, please open an issue.