diff --git a/helm-chart/README.md b/helm-chart/README.md index c14a0b6a6..afb6db0c6 100644 --- a/helm-chart/README.md +++ b/helm-chart/README.md @@ -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/) diff --git a/manifests/README.md b/manifests/README.md new file mode 100644 index 000000000..5b5f88982 --- /dev/null +++ b/manifests/README.md @@ -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/)