REMOTE vRULE ENGINE DEPLOYMENT
-
Log in to the Artifactory site using Virsec-provided credentials from the local machine
-
Navigate to the directory vsp > releases > public > 2 > 2.9 > <Patch_Version> > Helm
-
Right-click on the file vsp-vrule-<RELEASE_VERSION>.tgz, listed on the page and download it to the local system
-
Log in to the Management Node
-
Copy the downloaded file vsp-vrule-<RELEASE_VERSION>.tgz
-
-
Install VSP Remote vRule Engine using the below commands (using either Method 1 or 2)
-
Method 1: Using helm install command
-
Helm 3
helm install <UNIQUE_DEPLOYMENT_NAME> ./vsp-vrule-<RELEASE_VERSION>.tgz --namespace virsec
-
Helm 2
helm install --name <UNIQUE_DEPLOYMENT_NAME> ./vsp-vrule-<RELEASE_VERSION>.tgz --namespace virsec
-
-
Method 2: Using kubectl command
-
Helm 3
helm template <UNIQUE_DEPLOYMENT_NAME> ./vsp-vrule-<RELEASE_VERSION>.tgz --namespace virsec
-
Helm 2
helm template --name <UNIQUE_DEPLOYMENT_NAME> ./vsp-vrule-<RELEASE_VERSION>.tgz --namespace virsec
-
kubectl apply -f vsp-vrule.yaml
-
-