diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d9c4e8c934cd08eda8eef716d194e159ace261..f991b5ca378ddea81f0791e6d410e1af3688ea40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,25 @@ -#Twistlock +# Changelog -0.1.0 (06/15/2020) -Manifests for deploying Twistlock 20.04.196 +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.2-bb.2] - 2021-02-11 +### Added +- imagePullSecret array to values. + +### Changed +- Image based on 20.12 version from IronBank. + +## [0.0.2-bb.1] - 2021-01-27 +### Changed +- Updating all "dsop.io" URLs to "dso.mil". + +## [0.0.2-bb.0] - 2020-12-15 +### Added +- Istio flag to enable VirtualService when true. + +## [0.0.1-bb.0] - 2020-06-15 +### Added +- Initial manifests for deploying Twistlock version 20.04.196. -0.2.0 (08/24/2020) -Updated docs/readme.md to reflect keycloak SAML setup. diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 381d4f429178bedf73114c71b482bc04c8774bcd..940fd47e1bc3801d0d3edaed1cfa354473964db2 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v2 name: twistlock -version: 0.0.2-bb.1 +version: 0.0.2-bb.2 appVersion: 20.04.163 \ No newline at end of file diff --git a/chart/templates/twistlock_console.yaml b/chart/templates/twistlock_console.yaml index e8c1f704180c220e4ca7f4499d78926ae0da98b0..ca6f99740bd594f0415d04ae2ab35abfcfefc93c 100644 --- a/chart/templates/twistlock_console.yaml +++ b/chart/templates/twistlock_console.yaml @@ -70,6 +70,10 @@ spec: spec: restartPolicy: Always serviceAccountName: twistlock-console + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: twistlock-console image: {{ .Values.console.image.repository }}:{{ .Values.console.image.tag }} diff --git a/chart/values.yaml b/chart/values.yaml index f6230528011bdadf58397685b325a7c4b3739b73..66d2018fd1fa01632529aac358dc7c81fdd7f97f 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -4,13 +4,16 @@ prometheus: istio: enabled: false - + +# imagePullSecrets defines the secrets to use when pulling the operator container image. +imagePullSecrets: [] + console: hostname: bigbang.dev image: - repository: registry.dso.mil/platform-one/big-bang/apps/security-tools/twistlock/console - tag: 20.04.163 + repository: registry1.dso.mil/ironbank/twistlock/console/console + tag: 20.12.531 persistence: size: 100Gi diff --git a/tests/test-values.yml b/tests/test-values.yml index 016fd0d60e3e0b0f8665dd98951d0c1498bb4034..4a81fc8b51f84133ed4a7b85355a01e27d8ede59 100644 --- a/tests/test-values.yml +++ b/tests/test-values.yml @@ -1,17 +1,6 @@ -prometheus: - servicemonitor: - enabled: false +imagePullSecrets: +- name: private-registry-mil -istio: - enabled: true - console: - hostname: bigbang.dev - - image: - repository: registry.dso.mil/platform-one/big-bang/apps/security-tools/twistlock/console - tag: 20.04.163 - persistence: - size: 100Gi - accessMode: ReadWriteOnce \ No newline at end of file + size: 5Gi \ No newline at end of file