diff --git a/CHANGELOG.md b/CHANGELOG.md index a20fbef682b3b012b93ed873e135751078f008ce..8d10b2ac87814ccad92a9c5c8919c16e2d43b7cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- -## [0.0.6-bb.3] - 2021-08-03 +## [0.0.6-bb.2] - 2021-08-06 ### Added -- Add conditional hostpath for twistlock console. +- Add Resource limit and request. ## [0.0.6-bb.1] - 2021-07-21 diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 70e0f1cc82e1297b4de7514913af5ab2c6a54449..9f112b0ef968613747be0f13168efc5263432e43 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: twistlock -version: 0.0.6-bb.3 +version: 0.0.6-bb.2 appVersion: 21.04.412 dependencies: - name: gluon diff --git a/chart/templates/console/deployment.yaml b/chart/templates/console/deployment.yaml index 380535ee66dedbd45ed8b4585a589992ca0af187..0410fe51f02ad5f46f1dd390f85675e84e771d41 100644 --- a/chart/templates/console/deployment.yaml +++ b/chart/templates/console/deployment.yaml @@ -41,7 +41,7 @@ spec: - name: twistlock-console image: {{ .Values.console.image.repository }}:{{ .Values.console.image.tag }} resources: -{{ toYaml .Values.resources | indent 12 }} + {{ toYaml .Values.resources | nindent 10 }} ports: - name: mgmt-https containerPort: 8083 diff --git a/chart/values.yaml b/chart/values.yaml index 9b5c9bc8f930d2dcf8c83841bfd946d153d572f5..9325665696c823bd4af40622f1ba52383a347dda 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -66,11 +66,11 @@ tolerations: # effect: "NoSchedule" resources: - limits: {} - # memory: 256Mi - # cpu: 100m - requests: {} - # memory: 256Mi - # cpu: 100m + limits: + memory: 1Gi + cpu: 250m + requests: + memory: 512Mi + cpu: 250m openshift: false