A command-line interface for managing Intility Developer Platform resources.
brew install intility/tap/indevDownload the latest release for your platform from the GitHub Releases page. Extract the archive and add the binary to your PATH.
Requires Go 1.25 or higher.
git clone https://github.com/intility/indev.git
cd indev
go build -o indev ./cmd/indevSome commands require additional tools to be installed:
| Command | Requirement |
|---|---|
indev cluster login |
OpenShift CLI (oc) |
Log in to the Intility Developer Platform:
indev loginLog out:
indev logoutView your account information:
indev account showCreate a new Kubernetes cluster:
indev cluster createYou can also specify options directly:
indev cluster create --name my-cluster --preset balanced --nodes 4With autoscaling enabled:
indev cluster create --name my-cluster --preset performance --enable-autoscaling --min-nodes 2 --max-nodes 6Available node presets: minimal, balanced, performance
List your clusters:
indev cluster listGet 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>List teams:
indev team listCreate 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>List users:
indev user listShell completions are installed automatically via Homebrew. For manual installation, run indev completion --help for instructions.
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=1This 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.