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.26 or higher.
git clone https://github.com/intility/indev.git
cd indev
go build -o indev ./cmd/indevPrerequisites
Some commands require additional tools to be installed:
| Command | Requirement |
|---|---|
indev cluster login |
OpenShift CLI (oc) |
Usage
Authentication
Log in to the Intility Developer Platform:
Log out:
View your account information:
Cluster Management
Create a new Kubernetes cluster:
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:
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:
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:
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:
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.