From 47b9cd0c8dadd6fef8daa1408bb96680cbf4c396 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Wed, 12 Apr 2023 03:10:36 +0300 Subject: [PATCH] :zap: Update the `README.md`(s) --- helm-chart/README.md | 13 +++++++++++++ manifests/README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 manifests/README.md 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/)