Superstream Platform deployment for Air-Gapped environments
This guide provides instructions for deploying the Superstream Platform for air-gapped environments.
Step 1: Create Secrets with Randomly Generated Passwords for SSM
To create a secret for the Superstream with randomly generated passwords, run the following command:
kubectl create secret generic superstream-creds-control-plane \
--from-literal=postgres-password=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9') \
--from-literal=password=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9') \
--from-literal=repmgr-password=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9') \
--from-literal=admin-password=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9') \
--from-literal=superstream-admin-password=$(openssl rand -base64 16 | tr -dc 'a-zA-Z0-9') \
--from-literal=control-plane-token=$(openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c32) \
--from-literal=encryption-secret-key=$(openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c32) \
--from-literal=jwt-secret-key=$(openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c32) \
--from-literal=jwt-api-secret-key=$(openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c32) \
-n superstreamImportant: The secret name superstream-creds-control-plane cannot be changed in the current release. This will be fixed in an upcoming release.
encryption-secret-keyjwt-secret-keyjwt-api-secret-keycontrol-plane-token
Step 2: Configure Environment Tokens
For a more straightforward configuration, create a custom_values.yaml file and edit the following values:
Proxy Configuration
If your environment requires a proxy server to connect to external services, set the global.proxy.enabled variable to true and provide the global.proxy.proxyUrl in the custom_values.yaml file. This configuration ensures that all critical services route traffic through the specified proxy. Additionally, make sure your proxy server permits connectivity to the following endpoints:
Prometheus:
https://prometheus.mgmt.superstream.aiLoki:
https://loki.mgmt.superstream.aiStigg:
https://api.stigg.io
Step 3: Deployment Instructions
To deploy the Superstream, run the following command:
Step 4: Configure valid FQDN records
To use the Superstream User Interface, the following two FQDN records should be exposed under the same domain.
Expose the Superstream Control Plane service. Using
superstream-apiat the beginning of the configured FQDN is a hard requirement. Example: "superstream-api.example.com"Expose the Superstream Control Plane UI service. Example:
superstream-app.example.comLog in to the Superstream UI and connect your first Kafka cluster.
Follow these steps to successfully configure and deploy your Superstream Control Plane environment.
Last updated
Was this helpful?

