Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ homebrew_casks:
name: homebrew-tap
token: "{{ .Env.TAP_REPO_GITHUB_TOKEN }}"
homepage: https://developers.intility.com
description: "A CLI for managing developer platform resources."
description: "A command-line interface to For Developers."
directory: Casks
url:
template: "https://github.com/intility/indev/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</p>

<p align="center">
A command-line interface for managing Intility Developer Platform resources.
A command-line interface to For Developers.
</p>

<p align="center">
Expand Down Expand Up @@ -52,7 +52,7 @@ Some commands require additional tools to be installed:

### Authentication

Log in to the Intility Developer Platform:
Log in to For Developers:

```sh
indev login
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/account/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func NewLoginCommand(set clientset.ClientSet) *cobra.Command {

cmd := &cobra.Command{
Use: "login",
Short: "Sign in to the Intility Developer Platform",
Long: `Sign in to the Intility Developer Platform using your Intility credentials.`,
Short: "Sign in to For Developers",
Long: `Sign in to For Developers using your Intility credentials.`,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "account.login")
defer span.End()
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/ai/deployment/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func NewDeleteCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "delete",
Short: "Delete an AI deployment",
Long: "Delete an AI deployment from the Intility Developer Platform",
Long: "Delete an AI deployment from Intility Inference",
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "aideployment.delete")
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/ai/deployment/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewListCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List AI deployments",
Long: "List all AI deployments in the Intility Developer Platform",
Long: "List all AI deployments in Intility Inference",
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "aideployment.list")
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/ai/models_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewListCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List all AI models",
Long: `List all available AI models in the Intility Developer Platform`,
Long: `List all available AI models in Intility Inference`,
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "aimodels.list")
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/pullsecret/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewListCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List all image pull secrets",
Long: `List all image pull secrets in the Intility Developer Platform`,
Long: `List all your For Developers image pull secrets`,
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "pullsecret.list")
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/teams/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func NewListCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List all teams",
Long: `List all teams in the Intility Developer Platform`,
Long: `List all your For Developers teams`,
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "teams.list")
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/user/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func NewListCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "List all users",
Long: `List all users in the Intility Developer Platform`,
Long: `List all your For Developers users`,
PreRunE: set.EnsureSignedInPreHook,
RunE: func(cmd *cobra.Command, args []string) error {
ctx, span := telemetry.StartSpan(cmd.Context(), "users.list")
Expand Down
34 changes: 17 additions & 17 deletions pkg/rootcommand/rootcommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func GetRootCommand() *cobra.Command {

rootCmd := &cobra.Command{
Use: build.AppName,
Short: build.AppName + " controls your Intility Developer Platform instance.",
Short: build.AppName + " is the command-line interface to For Developers.",
Long: ``,
Run: showHelp,
SilenceErrors: true,
Expand Down Expand Up @@ -67,8 +67,8 @@ func getVersionCommand() *cobra.Command {
func getClusterCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "cluster",
Short: "Manage your Intility Developer Platform clusters",
Long: `Manage your Intility Developer Platform clusters`,
Short: "Manage your Intility Kubernetes clusters",
Long: `Manage your Intility Kubernetes clusters`,
Run: showHelp,
}

Expand All @@ -88,8 +88,8 @@ func getClusterCommand(set clientset.ClientSet) *cobra.Command {
func getClusterPullSecretCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "pullsecret",
Short: "Manage Intility Developer Platform cluster pull secrets",
Long: "Manage Intility Developer Platform cluster pull secrets",
Short: "Manage Intility Kubernetes cluster pull secrets",
Long: "Manage Intility Kubernetes cluster pull secrets",
Run: showHelp,
}

Expand All @@ -116,8 +116,8 @@ func getAccessCommand(set clientset.ClientSet) *cobra.Command {
func getAccountCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "account",
Short: "Manage your Intility Developer Platform account",
Long: `Manage your Intility Developer Platform account`,
Short: "Manage your For Developers account",
Long: `Manage your For Developers account`,
Run: showHelp,
}

Expand All @@ -129,8 +129,8 @@ func getAccountCommand(set clientset.ClientSet) *cobra.Command {
func getTeamsCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "team",
Short: "Manage Intility Developer Platform teams",
Long: "Manage Intility Developer Platform teams",
Short: "Manage For Developers teams",
Long: "Manage For Developers teams",
Run: showHelp,
}

Expand All @@ -147,8 +147,8 @@ func getTeamsCommand(set clientset.ClientSet) *cobra.Command {
func getMemberCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "member",
Short: "Manage Intility Developer Platform team members",
Long: "Manage Intility Developer Platform team members",
Short: "Manage For Developers team members",
Long: "Manage For Developers team members",
Run: showHelp,
}

Expand All @@ -161,8 +161,8 @@ func getMemberCommand(set clientset.ClientSet) *cobra.Command {
func getUserCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "user",
Short: "Manage Intility Developer Platform users",
Long: "Manage Intility Developer Platform users",
Short: "Manage For Developers users",
Long: "Manage For Developers users",
Run: showHelp,
}

Expand All @@ -174,8 +174,8 @@ func getUserCommand(set clientset.ClientSet) *cobra.Command {
func getAICommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "ai",
Short: "Manage Intility Developer Platform AI Deployments",
Long: "Manage Intility Developer Platform AI Deployments",
Short: "Manage Intility Inference AI Deployments",
Long: "Manage Intility Inference AI Deployments",
Hidden: true,
PersistentPreRunE: set.EnsureAITenantPreHook,
Run: showHelp,
Expand Down Expand Up @@ -234,8 +234,8 @@ func getAIAPIKeyCommand(set clientset.ClientSet) *cobra.Command {
func getPullSecretCommand(set clientset.ClientSet) *cobra.Command {
cmd := &cobra.Command{
Use: "pullsecret",
Short: "Manage Intility Developer Platform image pull secrets",
Long: "Manage Intility Developer Platform image pull secrets",
Short: "Manage For Developers image pull secrets",
Long: "Manage For Developers image pull secrets",
Run: showHelp,
}

Expand Down