Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/groundcover-com/cli
groundcover's official CLI tool. Level up your K8s observability game with eBPF.
https://github.com/groundcover-com/cli
ebpf kubernetes monitoring
Last synced: about 1 month ago
JSON representation
groundcover's official CLI tool. Level up your K8s observability game with eBPF.
- Host: GitHub
- URL: https://github.com/groundcover-com/cli
- Owner: groundcover-com
- License: apache-2.0
- Created: 2022-06-26T14:08:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T09:40:25.000Z (7 months ago)
- Last Synced: 2024-05-22T10:51:09.852Z (7 months ago)
- Topics: ebpf, kubernetes, monitoring
- Language: Go
- Homepage: https://www.groundcover.com
- Size: 603 KB
- Stars: 28
- Watchers: 6
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# groundcover CLI
## Installation
### From Script
CLI now has an installer script that will automatically grab the latest version and install it locally.
`sh -c "$(curl -fsSL https://groundcover.com/install.sh)"`
### From the Binary Releases
Binary downloads of the CLI can be found on [the Releases page](https://github.com/groundcover-com/cli/releases/latest).
#### Linux
```bash
VERSION=0.1.0# Intel Chip
curl -SsL https://github.com/groundcover-com/cli/releases/download/v${VERSION}/groundcover_${VERSION}_linux_amd64.tar.gz -o /tmp/groundcover.tar.gz
# ARM chip
curl -SsL https://github.com/groundcover-com/cli/releases/download/v${VERSION}/groundcover_${VERSION}_linux_arm64.tar.gz -o /tmp/groundcover.tar.gzmkdir -p ~/.groundcover/bin
tar -zxf /tmp/groundcover.tar.gz -C ~/.groundcover/bin
chmod +x ~/.groundcover/bin/groundcoverecho 'export PATH=~/.groundcover/bin:/$PATH' >> ~/.bashrc
```#### MacOS
```bash
VERSION=0.1.0# Intel chip
curl -SsL https://github.com/groundcover-com/cli/releases/download/v${VERSION}/groundcover_${VERSION}_darwin_amd64.tar.gz -o /tmp/groundcover.tar.gz
# Apple chip
curl -SsL https://github.com/groundcover-com/cli/releases/download/v${VERSION}/groundcover_${VERSION}_darwin_arm64.tar.gz -o /tmp/groundcover.tar.gzmkdir -p ~/.groundcover/bin
tar -zxf /tmp/groundcover.tar.gz -C ~/.groundcover/bin
chmod +x ~/.groundcover/bin/groundcoverecho 'export PATH=~/.groundcover/bin:/$PATH' >> ~/.zshrc
```