UNCLASSIFIED

Commit da3a3823 authored by Ryan Garcia's avatar Ryan Garcia
Browse files

Merge branch 'hospath-violation' into 'main'

Hospath violation

See merge request !28
parents 5ff5c82e 0b802bea
Pipeline #414959 passed with stages
in 4 minutes and 54 seconds
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
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). 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.7-bb.0] - 2021-08-09
### Added
- Add conditional syslog audit integration for twistlock console.
## [0.0.6-bb.2] - 2021-08-06 ## [0.0.6-bb.2] - 2021-08-06
### Added ### Added
......
apiVersion: v2 apiVersion: v2
name: twistlock name: twistlock
version: 0.0.6-bb.2 version: 0.0.7-bb.0
appVersion: 21.04.412 appVersion: 21.04.412
dependencies: dependencies:
- name: gluon - name: gluon
......
...@@ -86,6 +86,10 @@ spec: ...@@ -86,6 +86,10 @@ spec:
configMap: configMap:
name: twistlock-console name: twistlock-console
- name: syslog-socket - name: syslog-socket
{{- if .Values.console.syslogAuditIntegration.enabled}}
hostPath: hostPath:
path: "/dev/log" path: "/dev/log"
{{- else}}
emptyDir: {}
{{- end}}
...@@ -10,3 +10,7 @@ spec: ...@@ -10,3 +10,7 @@ spec:
resources: resources:
requests: requests:
storage: {{ .Values.console.persistence.size }} storage: {{ .Values.console.persistence.size }}
---
...@@ -33,6 +33,11 @@ console: ...@@ -33,6 +33,11 @@ console:
persistence: persistence:
size: 100Gi size: 100Gi
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
# Enable syslog audit feature.
## Make sure when integrating with bigbang - https://repo1.dso.mil/platform-one/big-bang/bigbang/-/blob/master/chart/templates/gatekeeper/values.yaml there
## is an exception for twistlock namespace in volumetypes.
syslogAuditIntegration:
enabled: false
affinity: affinity:
{} {}
......
...@@ -11,6 +11,7 @@ console: ...@@ -11,6 +11,7 @@ console:
persistence: persistence:
size: 5Gi size: 5Gi
bbtests: bbtests:
enabled: true enabled: true
cypress: cypress:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment