Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing kuadrantctl install & uninstall #70

Merged
merged 2 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 0 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ kuadrantctl [command] [subcommand] [flags]
| `completion` | Generate autocompletion scripts for the specified shell |
| `generate` | Commands related to Kubernetes Gateway API and Kuadrant resource generation from OpenAPI 3.x specifications |
| `help` | Help about any command |
| `install` | Install the Kuadrant Operator with OLM to your Kuberenetes or OpenShift cluster |
| `uninstall` | Uninstall Kuadrant Operator from a Kubernetes or OpenShift cluster |
| `version` | Print the version number of `kuadrantctl` |

### Flags
Expand Down Expand Up @@ -92,24 +90,6 @@ Generate Kuadrant resources from an OpenAPI 3.x specification
| `ratelimitpolicy`| Generate [Kuadrant RateLimitPolicy](https://docs.kuadrant.io/kuadrant-operator/doc/rate-limiting/) from an OpenAPI 3.0.x specification | `--oas string` Path to OpenAPI spec file (in JSON or YAML format), URL, or '-' to read from standard input (required). `-o` Output format: 'yaml' or 'json'. Default: yaml |


#### `install`

Install the [Kuadrant Operator](https://github.com/Kuadrant/kuadrant-operator) into an OLM-powered cluster.

| Flag | Description |
| --------------------- | -------------------------------- |
| `--kubeconfig` string | Kubernetes configuration file |

* For more information of the Kuadrant Operator, see https://docs.kuadrant.io/kuadrant-operator/

#### `uninstall`

Remove Kuadrant from the cluster.

| Flag | Description |
| --------------------- | -------------------------------- |
| `--kubeconfig` string | Kubernetes configuration file |

#### `version`

Print the version number of `kuadrantctl`.
Expand Down Expand Up @@ -149,8 +129,6 @@ For more detailed information about each command, including options and usage ex
```

## Commands
* [Install Kuadrant](doc/install.md)
* [Uninstall Kuadrant](doc/uninstall.md)
* [Generate Gateway API HTTPRoute objects from OpenAPI 3.X](doc/generate-gateway-api-httproute.md)
* [Generate Kuadrant RateLimitPolicy from OpenAPI 3.X](doc/generate-kuadrant-rate-limit-policy.md)
* [Generate Kuadrant AuthPolicy from OpenAPI 3.X](doc/generate-kuadrant-auth-policy.md)
Expand Down
243 changes: 0 additions & 243 deletions cmd/install.go

This file was deleted.

2 changes: 0 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ func GetRootCmd(args []string) *cobra.Command {
rootCmd.SilenceUsage = true
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose output")

rootCmd.AddCommand(installCommand())
rootCmd.AddCommand(uninstallCommand())
rootCmd.AddCommand(versionCommand())
rootCmd.AddCommand(generateCommand())

Expand Down
80 changes: 0 additions & 80 deletions cmd/uninstall.go

This file was deleted.

Loading
Loading