Update the README.md(s)

This commit is contained in:
M. Mert Yildiran 2023-04-12 03:10:36 +03:00
parent fb06545887
commit 47b9cd0c8d
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461
2 changed files with 41 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# Helm Chart of Kubeshark
## Officially (WIP)
Add the Helm repo for Kubeshark:
```shell
@ -38,3 +40,14 @@ Uninstall Kubeshark:
```shell
helm uninstall kubeshark
```
## Accesing
Do the port forwarding:
```shell
kubectl port-forward -n kubeshark service/kubeshark-hub 8898:80 & \
kubectl port-forward -n kubeshark service/kubeshark-front 8899:80
```
Visit [localhost:8899](http://localhost:8899/)

28
manifests/README.md Normal file
View File

@ -0,0 +1,28 @@
# Manifests
## Apply
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
```
## Accesing
Do the port forwarding:
```shell
kubectl port-forward -n kubeshark service/kubeshark-hub 8898:80 & \
kubectl port-forward -n kubeshark service/kubeshark-front 8899:80
```
Visit [localhost:8899](http://localhost:8899/)