Non-high availability setup
StackState Self-hosted v4.6.x
This page describes StackState version 4.6.
The recommended Kubernetes/OpenShift deployment of StackState is a production ready setup with many services running redundantly. If required, it is also possible to run StackState in a non-redundant setup, where each service has only a single replica.
The non-high availability setup is only suitable for situations that do not require high availability.
To deploy StackState in a non-high availability setup, you will need a
nonha_values.yaml
file. Follow the instructions below to create this file and use it for deployment of StackState.- 1.Create a Helm values file
nonha_values.yaml
with the following content and store it next to the generatedvalues.yaml
file:# This files defines additional Helm values to run StackState on a# non-high availability production setup. Use this file in combination# with a regular values.yaml file that contains your API key, etc.elasticsearch:minimumMasterNodes: 1replicas: 1hbase:hbase:master:replicaCount: 1regionserver:replicaCount: 1hdfs:datanode:replicaCount: 1secondarynamenode:enabled: falsetephra:replicaCount: 1kafka:replicaCount: 1defaultReplicationFactor: 1offsetsTopicReplicationFactor: 1transactionStateLogReplicationFactor: 1stackstate:components:ui:replicaCount: 1zookeeper:replicaCount: 1 - 2.Continue with the instructions to deploy StackState with Helm:
Last modified 11mo ago