Skip to content

Commit 2ec4824

Browse files
authored
Reduce k8s waggle-dance process heapsize from 90 to 85 percent of container memory limit (#71)
1 parent c087536 commit 2ec4824

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
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).
55

6+
## [3.0.2] - 2019-11-21
7+
8+
### Changed
9+
- Reduce k8s waggle-dance process heapsize from 90 to 85 percent of container memory limit.
10+
611
## [3.0.1] - 2019-11-13
712

813
### Changed

k8s.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
locals {
8-
heapsize = ceil((var.memory * 90) / 100)
8+
heapsize = ceil((var.memory * 85) / 100)
99
}
1010
resource "kubernetes_deployment" "waggle_dance" {
1111
count = var.wd_instance_type == "k8s" ? 1 : 0

0 commit comments

Comments
 (0)