LogoLogo
Home
Installation
Installation
  • Introduction
  • Deployment Alternatives
    • Kubernetes Deployment
      • Prerequisites
      • Recommended: Helm - Fully Automated
      • Alternative 1: Ansible - Fully Automated
      • Alternative 2: Ansible - Step-by-Step
      • Cloud Specific Details
    • Sandbox VM Deployment
      • AWS AMI - Developer Lite
    • Local Test Deployment
  • Artifacts
    • Helm Charts
      • Umbrella Charts
        • Ready Core
        • Ready CMS
        • Ready PIM
      • Initialization Charts
        • Namespaces
        • Global
        • Loader
        • Deployer API
        • Deployer
      • Application Charts
        • Admin UI
        • Gateway
        • Spring Runner
        • Samza Runner
        • Socket Runner
        • Storefront
      • Batch Charts
        • Cron
        • Job
      • Deprecated
        • Authentication
        • Session
        • H2O Wave
        • Wave App
    • Deployment Assets
      • Deprecated
    • Docker Repository
      • Front-end Images
      • Back-end Images
      • Python Images
    • Maven Repository
      • Core Packages
      • Runner Packages
      • Processors Packages
      • Custom Packages
      • Gateway Packages
    • Python Packages
    • Terraform Configurations
    • Ansible Playbooks
      • Initialization Playbooks
      • Application Playbooks
      • Enabler Playbooks
  • Administration
    • Cost & License Management
    • Secrets & Config Management
    • Testing & Health-Check
    • Logs & Traces & Metrics
    • Backup & Recovery
    • Technical Support
Powered by GitBook

© Rierino Software Inc. 2025. All rights reserved.

On this page
  • Provision Enabling Systems
  • Set-up Initial Deployment Host
  • Provision a Kubernetes Cluster
  • Configure Network Connectivity
  1. Deployment Alternatives
  2. Kubernetes Deployment

Prerequisites

Before deployment of services, you need to install enabling systems and provision servers based on your requirements

PreviousKubernetes DeploymentNextRecommended: Helm - Fully Automated

Last updated 1 year ago

Provision Enabling Systems

At a minimum level, deployment of the Rierino platform requires specific enabling systems to be in place, such as a database for persistence. It is recommended that the following (or equivalent systems supported by Rierino) be deployed before starting the platform deployment:

MongoDB
:
  replSetName: rs0
rs.initiate({ _id: "rs0", version: 1,
members: [
  { _id: 0, host : ":[MONGO_PORT]" }, 
  ...
]})
Kafka
Keycloak
Instances
AWS (tags:Name)
GCP (labels)

MongoDB

mongodb

mongodb

Kafka

kafka

kafka

Keycloak

keycloak

keycloak

Why don't we bundle these systems to our solution?

While it is possible to bundle these systems into our deployment packages and enable one-click deployments, it goes against our open architecture principles, where we let our clients replace any external system in our solution architecture or use their existing components for the same.

Also, these are the systems where private customer and commercially sensitive enterprise data is stored, hence we give our clients full control over their deployment and configuration (such as configuring authentication, encryption of data in transit and at rest).

If you don't already have these systems or would like to automated their deployment, check out vendor specific details for .

Set-up Initial Deployment Host

Depending on the option(s) you choose for the next step, install required tools on the machine you will be running deployments from

pip install kubernetes boto3 botocore
ansible-galaxy collection install kubernetes.core

You can also use the Rierino public Docker image specific to your cloud provider instead of manually installing these dependencies:

It is also possible to deploy remotely using helm charts without setting up such initial deployment host, but this approach is recommended as it provides more control and visibility during first deployment.

Provision a Kubernetes Cluster

Node Pool
Usage

admin-node-pool

Used by admin gateway and runner pods

ui-node-pool

Used by admin UI pods

ops-node-pool

Used by CDC and calculation runner pods

infra-node-pool

Used by deployer pods

Terraform Option

If you choose to automate provisioning with Terraform, you can clone our and run the following commands:

git clone --branch release-[RIERINO_VERSION] https://[GIT_USER]:[GIT_TOKEN]@github.com/rierino-open/deployment
cd deployment/environments/[CLOUD]
terraform init
terraform plan 
terraform apply -var="[VARIABLES]"

Terraform apply command will output kubeconfig contents, which should be saved as it will be required as an input file in following steps.

Configure Network Connectivity

Static IP
DNS Name
Usage

admin-gateway-lb-ip

admin-api.[DOMAIN]

External access to API gateway

admin-ui-lb-ip

admin-ui.[DOMAIN]

External access to UI

Rierino platform does not expose any resources publicly, other than the load balancer services.

If you wish to access additional system components (such as MongoDB, Keyloak UI, etc.), you can configure their firewall and network settings manually to allow public access.

You will need to provision a Kubernetes cluster to deploy Rierino services (), which you can do manually through your cloud vendor UI or using Rierino below for your cloud service provider.

Terraform configuration
Install | Terraform | HashiCorp DeveloperInstall | Terraform | HashiCorp Developer
Terraform Installation
Logo
GitHub - ansible/ansible: Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com.GitHub
Ansible Installation
Install ToolsKubernetes
kubectl Installation
Helm | Installing Helm
Helm Installation
Docker
Rierino Docker Deployment Images
Logo
Logo
installation options
Logo
Logo