https://github.com/fluid-cloudnative/fluid-cli
Official Fluid CLI
https://github.com/fluid-cloudnative/fluid-cli
Last synced: 2 days ago
JSON representation
Official Fluid CLI
- Host: GitHub
- URL: https://github.com/fluid-cloudnative/fluid-cli
- Owner: fluid-cloudnative
- License: apache-2.0
- Created: 2026-02-27T02:35:05.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2026-05-10T15:09:12.000Z (19 days ago)
- Last Synced: 2026-05-10T17:15:35.512Z (19 days ago)
- Language: Go
- Size: 94.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fluid-cli
Official CLI for [Fluid](https://github.com/fluid-cloudnative/fluid) — inspect and diagnose Fluid-managed Datasets and their Kubernetes resources.
Install the `fluid` binary on your `PATH`.
## Quick start
```bash
git clone https://github.com/fluid-cloudnative/fluid-cli.git
cd fluid-cli
make install-plugin
fluid --help
fluid inspect my-dataset -n default
fluid diagnose my-dataset -n default --archive
```
## Commands
| Command | Description |
|---------|-------------|
| `fluid inspect` | List Pods, Runtimes, PVCs, and related resources for a Dataset |
| `fluid diagnose` | Collect a support bundle (YAML, logs, events) for a Dataset |
| `fluid version` | Print CLI version |
For flags and examples, use `--help` on any command:
```bash
fluid inspect --help
fluid diagnose --help
```
## Documentation
- [Install](docs/install.md)
- [Inspect guide](docs/guides/inspect.md)
- [Diagnose guide](docs/guides/diagnose.md)
- [Troubleshooting](docs/troubleshooting.md)
- [Command reference](docs/reference/) (auto-generated from Cobra; run `make docs` to refresh)
## Development
See [CONTRIBUTING.md](CONTRIBUTING.md).
```bash
make build # build bin/fluid
make test # unit tests
make docs # regenerate docs/reference/
```
## License
Apache License 2.0 — see [LICENSE](LICENSE).