Install Synergy/Focus/Enterprise using Helm without Rancher
Prerequisites
Please refer to K3S installationhere for installation requirements.
Installation
All the commands in this runbook were tested against a VM with Canonical, Ubuntu, 20.04 LTS, amd64 as root.
Install K3s and wait for the pods to become ready:
curl -sfL https://assets.master.k3s.getvisibility.com/k3s/k3s.sh | INSTALL_K3S_VERSION="v1.26.10+k3s1" K3S_KUBECONFIG_MODE="644" sh -s - server --node-name=local-01
kubectl get deploy -n kube-system --output name | xargs -n1 -t kubectl rollout status -n kube-systemInstall Helm 3:
wget --quiet https://raw.githubusercontent.com/helm/helm/master/scripts/get -O /tmp/get_helm.sh \
&& chmod 0755 /tmp/get_helm.sh \
&& /tmp/get_helm.sh -v v3.8.2Configure GetVisibility private Docker image registry (replace
$USERNAMEand$PASSWORDwith the Docker credentials provided):
kubectl create secret docker-registry gv-docker-registry \
--docker-server=https://images.master.k3s.getvisibility.com \
--docker-username=$USERNAME \
--docker-password=$PASSWORD \
[email protected]Configure GetVisibility private Helm repository (replace
$USERNAMEand$PASSWORDwith the Helm credentials provided):
Install chart GetVisibility Essentials and wait for the pods to become ready. For Synergy (32 GB RAM machines), please replace
keycloak.url= IPADDRESS/DNS/FQDNwith IP Adress or FQDN or DNS name for Keycloak in formats like below https://192.168.10.1 or https://gv.domain.local or https://gv.getvisibility.com
For Focus and Enterprice (48+ GB RAM machines), please replace keycloak.url= IPADDRESS/DNS/FQDN with IP Adress or FQDN or DNS name for Keycloak in formats like below
https://192.168.10.1 or https://gv.domain.local or https://gv.getvisibility.com
Depending on the theme you want to use, run one of the commands below to install the chart GV Platform (don’t forget to replace
$PRODUCTwith either synergy or focus or enterprise):
a. GetVisibility theme:
b. Forcepoint theme:
Upgrade
GV Essentials
In order to upgrade the essential services (e.g. Postgres, Kafka, MongoDB, Consul) run helm repo update and then the same command you used in step 5.
Synergy/Focus/Enterprise
In order to upgrade Synergy/Focus/Enterprise run helm repo update and then the same command you used in step 6.
Monitoring
You can optionally also install monitoring tools to collect metrics and logs of all services that are running inside the cluster:
Install the CRDs:
Install the monitoring tools:
To access the Grafana dashboard run the command:
To access Prometheus dashboard run the command:
Last updated
Was this helpful?