Installing an Older Release

To install an older release of Kubeshark along with all its artifacts, follow these steps based on a specific tag (e.g., v52.0.0):

  1. Locate the desired release tag from Kubeshark’s tags on GitHub.

  2. Clone the repository at the specified tag release and install the Helm chart by executing the following commands:

git clone git@github.com:kubeshark/kubeshark.git
cd kubeshark
git checkout tags/<tag_name>
helm install kubeshark helm-chart

For example, when you’d like to use v52.0.0 and not automatically upgrade to a new release when such release is published, use the following commands:

git clone git@github.com:kubeshark/kubeshark.git
cd kubeshark
git checkout tags/v52.0.0
helm install kubeshark helm-chart