Deployment Options
Self Hosted

Installation

Once you have a new K8s Cluster created as per the guidelines provided in the Cluster Requirements doc, installing any OpsVerse stack can be done using the following steps:

First Time Installation

Download Config Generator

Download the config generator:

Shell


Run the Config Generator

Run the following command and follow instructions on your screen

Shell


At the end of the process, you will be presented with two values.yaml files, which will be preconfigured with all the base configurations required for installing your OpsVerse stack

Save this values.yaml file since it will contain all the configuration for your OpsVerse stack and will be required when you want to update components/versions or upgrade ObserveNow components. It can also be committed to git if you want to follow a GitOps workflow

Install the Operators

Install the operators required for your stack by running the following helm install against your cluster with one of the config files generated in the previous step.

YAML


Make sure to replace username/password above with the credentials you have received from your OpsVerse Onboarding Representative

Install the Stack

Installing your OpsVerse stack is now simply a matter of running helm install against your cluster with the other config file generated in the previous step.

YAML


Make sure to replace username/password above with the credentials you have received from your OpsVerse Onboarding Representative

That's it! If you look at your cluster, you should see OpsVerse components coming up. Give it a few minutes to ensure all pods are up and running.

Add DNS Entries

The helm command should also give a list of ingresses created that need to be added to your DNS service (eg. Route53 ). You can also run kubectl get ingress -A to get a list of ingresses along with the address to use for your DNS service.

Once you add your ingresses to DNS and let DNS propogate, you should be able to access different components of your OpsVerse stack from your browser.

Make sure your Certificate ACM ARN is correct in the config, otherwise your HTTPS endpoints may fail with a certificate error.

Making Updates

Since everything is driven by helm charts, making updates is as simple as updating the values.yaml file you had created in the previous steps and re-running the helm install command again. Charts can also be updated using helm repo update command to ensure you are always running the latest chart version. Make sure to look at the compatibility and deprecations in new chart versions to ensure you don't end up pushing breaking changes to your OpsVerse stack.