mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-04-28 03:52:23 +00:00
Signed-off-by: cloudclaim <824973921@qq.com> Co-authored-by: M. Mert Yildiran <me@mertyildiran.com> Co-authored-by: Alon Girmonsky <1990761+alongir@users.noreply.github.com>
35 lines
529 B
Markdown
35 lines
529 B
Markdown
# Manifests
|
|
|
|
## Apply
|
|
|
|
Clone the repo:
|
|
|
|
```shell
|
|
git clone git@github.com:kubeshark/kubeshark.git --depth 1
|
|
cd kubeshark/manifests
|
|
```
|
|
|
|
To apply the manifests, run:
|
|
|
|
```shell
|
|
kubectl apply -f .
|
|
```
|
|
|
|
To clean up:
|
|
|
|
```shell
|
|
kubectl delete namespace kubeshark
|
|
kubectl delete clusterrolebinding kubeshark-cluster-role-binding
|
|
kubectl delete clusterrole kubeshark-cluster-role
|
|
```
|
|
|
|
## Accessing
|
|
|
|
Do the port forwarding:
|
|
|
|
```shell
|
|
kubectl port-forward service/kubeshark-front 8899:80
|
|
```
|
|
|
|
Visit [localhost:8899](http://localhost:8899)
|