Skip to content

Commit 60cbbcc

Browse files
authored
chore(observability): remove argus alias and warning in readme (#683)
relates to STACKITCLI-50
1 parent bdf3004 commit 60cbbcc

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

README.md

-9
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,6 @@ This CLI is in a BETA state. More services and functionality will be supported s
2323
Your feedback is appreciated!
2424
Feel free to open [GitHub issues](https://github.com/stackitcloud/stackit-cli) to provide feature requests and bug reports.
2525

26-
<a name="warning-new-stackit-idp"></a>
27-
28-
> [!WARNING]
29-
> On August 26 2024, The STACKIT Argus service was renamed to STACKIT Observability.
30-
>
31-
> This means that there is a new command group `observability`, which offers the same functionality as the deprecated `argus` command.
32-
>
33-
> Please make sure to **update your STACKIT CLI to the latest version after August 26 2024** to ensure that you start using `observability` command.
34-
3526
## Installation
3627

3728
Please refer to our [installation guide](./INSTALLATION.md) for instructions on how to install and get started using the STACKIT CLI.

internal/cmd/observability/observability.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ import (
1515

1616
func NewCmd(p *print.Printer) *cobra.Command {
1717
cmd := &cobra.Command{
18-
Use: "observability",
19-
Aliases: []string{"argus"},
20-
Short: "Provides functionality for Observability",
21-
Long: "Provides functionality for Observability.",
22-
Args: args.NoArgs,
23-
Run: utils.CmdHelp,
18+
Use: "observability",
19+
Short: "Provides functionality for Observability",
20+
Long: "Provides functionality for Observability.",
21+
Args: args.NoArgs,
22+
Run: utils.CmdHelp,
2423
}
2524
addSubcommands(cmd, p)
2625
return cmd

0 commit comments

Comments
 (0)