Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Integration test for cluster_controller written with envtest and ginkgo
- Description of failover setting in the Cartridge Kubernetes guide
- Section to troubleshooting about CrashLoopBackOff
- Lua memory reserve for tarantool containers

### Changed
- Requested verbs for a RBAC role Tarantool: remove all * verbs and resources
Expand Down
4 changes: 2 additions & 2 deletions examples/kv/helm-chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ spec:
resources:
requests:
cpu: "{{ .CPUallocation }}"
memory: "{{ .MemtxMemoryMB }}M"
memory: "{{ add .MemtxMemoryMB $.Values.LuaMemoryReserveMB }}M"
limits:
cpu: "{{ .CPUallocation }}"
memory: "{{ .MemtxMemoryMB }}M"
memory: "{{ add .MemtxMemoryMB $.Values.LuaMemoryReserveMB }}M"
ports:
- containerPort: 3301
protocol: TCP
Expand Down
1 change: 1 addition & 0 deletions examples/kv/helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ClusterEnv: dev
ClusterName: examples-kv-cluster
ClusterDomainName: cluster.local
TarantoolWorkDir: /var/lib/tarantool
LuaMemoryReserveMB: 2048

image:
repository: tarantool/tarantool-operator-examples-kv
Expand Down