Unmanaged Private Cloud Deployment
To deploy Jedox in your own Kubernetes cluster, ensure that the technical requirements are met and follow the steps below.
Installation Process
Run the following command to login to the Jedox container registry:
helm registry login <repo> -u <user> -p <pass>
The connection details will be provided to you by the Jedox team.
After successfully logging in, pull and export the Jedox Helm Chart to a directory on your computer using the following commands:
helm pull oci://<repo>/helm/jedox --version xx.x --untar --untardir jedox-xx.x
The value for the version parameter in this command is specifying the version of the Jedox Helm Chart to be pulled, and is not to be confused with the version of the Jedox Platform that will be installed with this Chart later. To define the Jedox Platform version, go to the Jedox directory within untardir, which has been created after running the helm pull command, and define the Jedox version that you want to install afterwards by running one of the following set-ver scripts:
- For PowerShell (Windows)
.\set-ver.ps1 -newVersion "<your_version>"
; E.g: .\set-ver.ps1 -newVersion "24.2" - For Bash (Linux/Mac)
./set-ver.sh <your_version>
; E.g: ./set-ver.sh 24.2
Go to the Jedox-xx.x/Jedox directory, where the Helm chart is extracted, and locate the file jedox_values.yaml. Adjust the values in this file according to your specific requirements. The values in the jedox_values.yaml file should be edited when defining a new Jedox instance. The values.yaml file does not need to be edited in a normal setup scenario.
# NOTE: What is called "Jedox instance" in the docs, is in Helm terminology a "release".
# NOTE: This is a streamlined version of the values.yaml file. For a full list of options, please refer to the values.yaml file.
# NOTE: The jedox_values.yaml file is used to define the most common production settings for the Jedox instance.
# NOTE: In a standard deployment, you only need to modify this and only this file. Values.yaml should be ignored.
global:
# values used by the BYOI deployment
storage:
# You can enable only one storage method: fromStorageClass / fromPersistentVolume / fromNfs
external:
fromStorageClass:
# Set to true if you want to use StorageClass
enabled: false
# For jedox_values.yaml, the storageClass must always be RWX and Use nfs 3.1 instead
# If you cannot natively provide RWX storage, you can use the NFS option below
# https://github.com/kubernetes-sigs/nfs-ganesha-server-and-external-provisioner
# Name of the storage class defined in your cluster (required)
storageClass: default
#The disk size must always be at least 128Gi (512GB recommended)
diskSize: 128Gi
#To be used when you want to define your PersistentVolumeClaim manually
fromPersistentVolume:
# Set to true if you want to use manually defined PVC
enabled: false
# The below variables are used to define external NFS for Jedox
# Please input the name of a RWX PVC that is already defined in the NS where you deploy Jedox (required)
# pvc: rwx-pvc
# To be used when you run your own NFS server
# Only NFS 3 is supported
fromNfs:
enabled: false
#
# NFS server address (required)
server: 10.100.10.10
#
# NFS path (required)
path: /jedox
#
# NFS volume size (default is 100Gi)
#size:
#
# NFS volume reclaim policy (default is Retain)
#reclaimPolicy:
#
# NFS volume mount options (default is rsize=262144, wsize=262144, nconnect=8). nfsvers=3 is required and always set
#mountOptions:
#
#
#Define the PostgreSQL settings
#Set to true if you want to use an external PostgreSQL DB
db:
# If both external and internal PostgreSQL options are set to false, it will fallback on H2 DB (not supported)
# Either external or internal can be enabled at the same time.
postgres:
#
# Use an external PostgreSQL server
external:
enabled: false
#
# PosgreSQL init details (required)
#
# for BYOI, this is the hostname or IP for the PostgreSQL DB (required)
databaseHost:
#
#for BYOI, this is the name of the database you've defined in the PostgreSQL server (the DB schema should have the same name)
databaseName:
#
# PostgreSQL username (required)
databaseUser:
# PostgreSQL password (required)
databasePassword:
# for BYOI, this is the port for the PostgreSQL DB (required)
databasePort: 5432
# Sslmode for PostgreSQL DB (required)
sslmode: require
# vhosts configuration
vhosts:
#
# Virtual hosts. Default uses the Helm release name.
# Format: <namespace>.<apex-domain>.
# The namespace serves as the subdomain. E.g.:
#hosts:
# - company.jedox.com
# cert-manager configuration
# If using cert-manager, you can add the issuer name to the values.
cert_manager:
enabled: false
#
# issuer name, default is letsencrypt-staging
#issuerName: letsencrypt
#
# issuer kind, default is ClusterIssuer
#issuerKind: Issuer
olap:
enabled: true
olap:
# hardware key for licensing, at least 10 chars (required)
#hwKey:
As per Jedox naming conventions, the namespace where you deploy the Jedox instance must have the same name as the subdomain in the DNS. For example, if your instance is accessed via the domain dev-jedox.customer.com, the namespace of the instance must be dev-jedox.
Use the following Helm command to deploy Jedox to the Kubernetes cluster:
helm install <release-name> . --namespace <namespace> --values jedox_values.yaml
Replace ‘<release-name>’ with the desired name for the Helm release.
Once the Helm chart is deployed, you must adjust the Ingress controllers to point to the correct domain. You can do this via the externalDomains
parameter in values. Once set, you’ll be able to access Jedox via <chart_name>.<domain>
.
The certificates must be set manually for each Ingress controller.
Our commitment to providing a seamless user experience includes the automatic release of Docker images whenever improvements are made. The updated Docker image is automatically released during scheduled overnight processes, ensuring you wake up to the latest, most stable version.
How to set up PostgreSQL connection for a Jedox instance using your own infrastructure:
- Set up database and schema
- Create a dedicated database and schema:
- The name of the database and the schema must be identical.
- Each Jedox instance requires its own database.
- Ideally, the database and schema are named the same as the namespace where Jedox is deployed.
- Create a user with administrative rights:
- This user must have full control over the database and the schema.
- They should be able to manage tables, indexes, and objects.
- If you have multiple Jedox instances, each instance must have its own dedicated user.
- Ideally, the user will be given the same name as the namespace where Jedox is deployed.
- Create a dedicated database and schema:
An example for the execution of commands within PostgreSQL (PSQL):
-- Step 1: Create the database
CREATE DATABASE jedox;
-- Step 2: Connect to the new database
\c jedox
-- Step 3: Create a schema with the same name as the database
CREATE SCHEMA jedox;
-- Step 4: Create a user with administrative privileges
CREATE USER jedox_admin WITH PASSWORD 'your_secure_password';
-- Step 5: Assign ownership of the database and schema to the user
ALTER DATABASE jedox OWNER TO jedox_admin;
ALTER SCHEMA jedox OWNER TO jedox_admin;
-- Step 6: Grant full privileges to the user
GRANT ALL PRIVILEGES ON DATABASE jedox TO jedox_admin;
GRANT ALL PRIVILEGES ON SCHEMA jedox TO jedox_admin;
- Configure the PostgreSQL connection in Helm
If you are deploying Jedox using Helm, define the PostgreSQL connection in the jedox_values.yaml file:
global:
# PostgreSQL Database Configuration
db:
# If both external and internal PostgreSQL options are set to false, it will fallback on H2 DB (not supported)
# Either external or internal can be enabled at the same time.
postgres:
# Use an external PostgreSQL server
external:
enabled: true # Set to true if using an external PostgreSQL DB
# PostgreSQL Host (required)
databaseHost: <your-host>
# Database Name (must match schema name)
databaseName: jedox
# PostgreSQL Credentials (required)
databaseUser: jedox_admin
databasePassword: your_secure_password
# PostgreSQL Port (default: 5432)
databasePort: 5432
# SSL Mode (disable for non-TLS connections)
sslmode: disable
- Quick check
Execute the following command inside PostgreSQL using the jedox_admin user.
SELECT datname FROM pg_database WHERE datname ='jedox';
SELECT schema_name FROM information_schema.schemata WHERE schema_name ='jedox';
If both return results, the database and the schema are available.
Updated February 26, 2025