From 77895bd097c25014c4d01e597fc83a6a1273bf77 Mon Sep 17 00:00:00 2001 From: anish-mudaraddi Date: Thu, 26 Mar 2026 12:26:17 +0000 Subject: [PATCH] bug: not creating opensearch nodes properly opensearch node config was not in correct place --- .../staging/worker/opensearch-values.yaml | 53 ++++++++++--------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/clusters/staging/worker/opensearch-values.yaml b/clusters/staging/worker/opensearch-values.yaml index 07a82c19..955028cd 100644 --- a/clusters/staging/worker/opensearch-values.yaml +++ b/clusters/staging/worker/opensearch-values.yaml @@ -21,29 +21,30 @@ stfc-cloud-opensearch: sectionName: https opensearch-cluster: - nodePools: - - component: nodes - diskSize: "500Gi" - replicas: 3 - persistence: - pvc: - accessModes: - - ReadWriteOnce - storageClass: csi-cinder - nodeSelector: {} - roles: - - "cluster_manager" - - "data" - resources: - requests: - memory: "4Gi" - # dedicate 5 cores - cpu: "5000m" - limits: - memory: "10Gi" - # burst to max 10 cores (62.5% of total) - # to stop CPU throttling alerts - cpu: "10000m" - pdb: - enable: true - maxUnavailable: 1 + cluster: + nodePools: + - component: nodes + diskSize: "500Gi" + replicas: 3 + persistence: + pvc: + accessModes: + - ReadWriteOnce + storageClass: csi-cinder + nodeSelector: {} + roles: + - "cluster_manager" + - "data" + resources: + requests: + memory: "4Gi" + # dedicate 5 cores + cpu: "5000m" + limits: + memory: "10Gi" + # burst to max 10 cores (62.5% of total) + # to stop CPU throttling alerts + cpu: "10000m" + pdb: + enable: true + maxUnavailable: 1