From 81067d125fedaf2be6f5f71d64c94b6388232c1b Mon Sep 17 00:00:00 2001 From: javsanbel2 Date: Thu, 20 Jun 2024 12:29:14 +0200 Subject: [PATCH] Changed hms-housekeeper heapsize since it is low memory container --- CHANGELOG.md | 4 ++++ k8s-housekeeper.tf | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93a697c..48325de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [7.1.9] - 2024-06-20 +### Fixed +- Housekeeper deployment should not use common `HADOOP_HEAPSIZE` variable since it is a low memory container. + ## [7.1.8] - 2024-06-19 ### Added - `hms_housekeeper_additional_environment_variables` variable to provide ability to add a list of environment variables in `hms-housekeeper` deployment. diff --git a/k8s-housekeeper.tf b/k8s-housekeeper.tf index 99f3568..c2f2f94 100644 --- a/k8s-housekeeper.tf +++ b/k8s-housekeeper.tf @@ -111,7 +111,7 @@ resource "kubernetes_deployment_v1" "apiary_hms_housekeeper" { } env { name = "HADOOP_HEAPSIZE" - value = local.hms_rw_heapsize + value = "1740" } env { name = "AWS_REGION"