Cloud Installation
If not already the case, start by installing a Kubernetes cluster. This can be done on one of the hyperscalers (AWS, GCP or Azure), cloud providers (Digital Ocean, Scaleway, etc) or on-premise in your own private network.
Prerequisites
Kerberos Vault is the storage component for Kerberos Enterprise. It is used to store your recordings at a central place, in the storage system you prefer. Next to that it can be used for extension and integration capabilities. Learn more about Kerberos Vault here.
To use Kerberos Vault, you will need to have Kerberos Enterprise installed, and deployments running. Independent from that one can also use the Kerberos Vault API /swagger/index.html to send recordings from a custom build VMS.
Installation
Similar to Kerberos Enterprise, Kerberos Vault, requires some initial components to be installed. If you will run Kerberos Vault in the same cluster as where you have Kerberos Enterprise running, there is not much to do.
Bring your own storage using Kerberos Vault
However if you plan to run Kerberos Vault in a different cluster (which is perfectly possible), you will need to make sure you complete the initial setup of Kerberos Enterprise installation. To be more specific you will need the following components running:
- Helm
- MongoDB
- Traefik
Once this is done start by cloning the configurations from our Github repo.
git clone https://github.com/kerberos-io/storage
Storage
Similar to Kerberos Enterprise, Kerberos Vault is managed through a web app. It allows you to add storage providers (S3, minio, etc), add queues for messaging, accounts for security and much more. It also comes with API’s, which you can use to interact and retrieve information from Kerberos Vault. All is documented in the form of Swagger APIs /swagger/index.html.
Before installing Kerberos Vault, open the ./storage/yaml/deployment.yaml configuration file. At the bottom file you will find two endpoints, similar to the Traefik config file below. Update the domain names to your own domain, and add these to your DNS server or /etc/hosts file (and point to the same IP as the Traefik EXTERNAL-IP).
spec:
rules:
--> - host: storage.domain.com
http:
paths:
- path: /
backend:
serviceName: kerberos-storage
servicePort: 80
--> - host: api.storage.domain.com
http:
paths:
- path: /
backend:
serviceName: kerberos-storage
servicePort: 8081
If you are using Ingress Nginx, do not forgot to comment Traefik and uncomment Ingress Nginx. Also note the extra argument proxy-body-size, this is required for not reaching the default 1MB body size limit. If you do not enable this, you might experience 413 errors in your Kerberos Enterprise agents.
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: kerberos-storage
annotations:
#kubernetes.io/ingress.class: traefik
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-body-size: 200m
Next to that modify the MongoDB credentials, and make sure they match the credentials of your MongoDB instance.
- name: MONGODB_USERNAME
value: "root"
- name: MONGODB_PASSWORD
--> value: "xxxxxxxxxx"
Once you have corrected the DNS names and MongoDB credentials, install Kerberos Vault inside your cluster.
kubectl apply -f ./storage/yaml/deployment.yaml
Test out configuration
If everything worked out as expected, you should now have following services in your cluster:
- MongoDB
- Traefik
- Storage
- Enterprise (optional)
It should look like this.
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
kerberos-storage-6f5c877d7c-hf77p 1/1 Running 0 2d11h
mongodb-55566dc65c-xgmns 2/2 Running 0 4d13h
traefik-7d566ccc47-mwslb 1/1 Running 0 4d12h
Access the system
Once everything is configured correctly your cluster and DNS or /etc/hosts file, you should be able to access the Storage application. By navigating to the Storage domain storage.domain.com in your browser you will see the Storage login page showing up.

Once successfully installed Kerberos Vault, it will show you the login page.