File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
11
11
- Integration test for cluster_controller written with envtest and ginkgo
12
12
- Description of failover setting in the Cartridge Kubernetes guide
13
13
- Section to troubleshooting about CrashLoopBackOff
14
+ - Lua memory reserve for tarantool containers
14
15
15
16
### Changed
16
17
- Requested verbs for a RBAC role Tarantool: remove all * verbs and resources
Original file line number Diff line number Diff line change @@ -83,10 +83,10 @@ spec:
83
83
resources :
84
84
requests :
85
85
cpu : " {{ .CPUallocation }}"
86
- memory : " {{ .MemtxMemoryMB }}M"
86
+ memory : " {{ add .MemtxMemoryMB $.Values.LuaMemoryReserveMB }}M"
87
87
limits :
88
88
cpu : " {{ .CPUallocation }}"
89
- memory : " {{ .MemtxMemoryMB }}M"
89
+ memory : " {{ add .MemtxMemoryMB $.Values.LuaMemoryReserveMB }}M"
90
90
ports :
91
91
- containerPort : 3301
92
92
protocol : TCP
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ ClusterEnv: dev
4
4
ClusterName : examples-kv-cluster
5
5
ClusterDomainName : cluster.local
6
6
TarantoolWorkDir : /var/lib/tarantool
7
+ LuaMemoryReserveMB : 2048
7
8
8
9
image :
9
10
repository : tarantool/tarantool-operator-examples-kv
You can’t perform that action at this time.
0 commit comments