mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-08 10:17:49 +00:00
* Rename `mizu` to `kubeshark` * Rename `up9inc` to `kubeshark` * Change the logo, title, motto and the main color * Replace the favicon * Update the docs link * Change the copyright text in C files * Remove a comment * Rewrite the `README.md` and update the logo and screenshots used in it * Add a `TODO` * Fix the grammar * Fix the bottom text in the filtering guide * Change the Docker Hub username of cross-compilation intermediate images * Add an install script * Fix `docker/login-action` in the CI * Delete `build-custom-branch.yml` GitHub workflow * Update `README.md` * Remove `install.sh` * Change the motto back to "Traffic viewer for Kubernetes"
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Kubeshark release _VER_
|
|
Kubeshark CHANGELOG is now part of [Kubeshark wiki](https://github.com/kubeshark/kubeshark/wiki/CHANGELOG)
|
|
|
|
## Download Kubeshark for your platform
|
|
|
|
**Mac** (x86-64/Intel)
|
|
```
|
|
curl -Lo kubeshark https://github.com/kubeshark/kubeshark/releases/download/_VER_/kubeshark_darwin_amd64 && chmod 755 kubeshark
|
|
```
|
|
|
|
**Mac** (AArch64/Apple M1 silicon)
|
|
```
|
|
rm -f kubeshark && curl -Lo kubeshark https://github.com/kubeshark/kubeshark/releases/download/_VER_/kubeshark_darwin_arm64 && chmod 755 kubeshark
|
|
```
|
|
|
|
**Linux** (x86-64)
|
|
```
|
|
curl -Lo kubeshark https://github.com/kubeshark/kubeshark/releases/download/_VER_/kubeshark_linux_amd64 && chmod 755 kubeshark
|
|
```
|
|
|
|
**Linux** (AArch64)
|
|
```
|
|
curl -Lo kubeshark https://github.com/kubeshark/kubeshark/releases/download/_VER_/kubeshark_linux_arm64 && chmod 755 kubeshark
|
|
```
|
|
|
|
**Windows** (x86-64)
|
|
```
|
|
curl -LO https://github.com/kubeshark/kubeshark/releases/download/_VER_/kubeshark.exe
|
|
```
|
|
|
|
### Checksums
|
|
SHA256 checksums available for compiled binaries.
|
|
Run `shasum -a 256 -c kubeshark_OS_ARCH.sha256` to verify.
|
|
|
|
|