cozystack/packages/apps/opensearch
Andrey Kolkov 2c141d3f38 feat(platform): add resourcePreset labels
Signed-off-by: Andrey Kolkov <androndo@gmail.com>
2026-04-17 15:04:25 +04:00
..
charts [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00
files [opensearch] Fix PR review issues: YAML keys and DaemonSet naming 2026-03-16 09:30:06 +01:00
hack [opensearch] Address PR review feedback 2026-03-17 11:20:44 +01:00
logos [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00
templates feat(platform): add resourcePreset labels 2026-04-17 15:04:25 +04:00
tests [opensearch] Add validation to ensure at least one node role is enabled 2026-03-18 10:08:12 +01:00
.helmignore [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00
Chart.yaml [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00
Makefile [docs] Fixed controller-gen markers 2026-03-25 15:57:25 +05:00
README.md [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00
values.schema.json [docs] Updated app go types 2026-03-25 15:57:25 +05:00
values.yaml [apps] Add managed OpenSearch service 2026-02-16 22:54:41 +01:00

Managed OpenSearch Service

Parameters

Common parameters

Name Description Type Value
replicas Number of OpenSearch nodes in the cluster. int 3
resources Explicit CPU and memory configuration for each OpenSearch node. When omitted, the preset defined in resourcesPreset is applied. object {}
resources.cpu CPU available to each node. quantity ""
resources.memory Memory (RAM) available to each node. quantity ""
resourcesPreset Default sizing preset used when resources is omitted. OpenSearch requires minimum 2Gi memory. string large
size Persistent Volume Claim size available for application data. quantity 10Gi
storageClass StorageClass used to store the data. string ""
external Enable external access from outside the cluster. bool false
topologySpreadPolicy How strictly to enforce pod distribution across nodes and zones. string soft
version OpenSearch major version to deploy. string v2

Image configuration

Name Description Type Value
images Container images used by the operator. object {}
images.opensearch OpenSearch image. string ""

Node roles configuration

Name Description Type Value
nodeRoles Node roles configuration. object {}
nodeRoles.master Enable cluster_manager role. bool true
nodeRoles.data Enable data role. bool true
nodeRoles.ingest Enable ingest role. bool true
nodeRoles.ml Enable machine learning role. bool false

Users configuration

Name Description Type Value
users Custom OpenSearch users configuration map. map[string]object {}
users[name].password Password for the user (auto-generated if omitted). string ""
users[name].roles List of OpenSearch roles. []string []

OpenSearch Dashboards configuration

Name Description Type Value
dashboards OpenSearch Dashboards configuration. object {}
dashboards.enabled Enable OpenSearch Dashboards deployment. bool false
dashboards.replicas Number of Dashboards replicas. int 1
dashboards.resources Explicit CPU and memory configuration for Dashboards. object {}
dashboards.resources.cpu CPU available to each node. quantity ""
dashboards.resources.memory Memory (RAM) available to each node. quantity ""
dashboards.resourcesPreset Default sizing preset for Dashboards. string medium