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 @@
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
### Added
......
apiVersion: v2
name: twistlock
version: 0.0.6-bb.2
version: 0.0.7-bb.0
appVersion: 21.04.412
dependencies:
- name: gluon
......
......@@ -86,6 +86,10 @@ spec:
configMap:
name: twistlock-console
- name: syslog-socket
{{- if .Values.console.syslogAuditIntegration.enabled}}
hostPath:
path: "/dev/log"
{{- else}}
emptyDir: {}
{{- end}}
......@@ -10,3 +10,7 @@ spec:
resources:
requests:
storage: {{ .Values.console.persistence.size }}
---
......@@ -33,6 +33,11 @@ console:
persistence:
size: 100Gi
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:
{}
......
......@@ -11,6 +11,7 @@ console:
persistence:
size: 5Gi
bbtests:
enabled: true
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