Skip to content

Commit 0e77dcf

Browse files
committed
Update charts with latest changes
1 parent f37d22f commit 0e77dcf

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

wiz-outpost-lite/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.20250610
18+
version: 0.1.20250615
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

wiz-outpost-lite/templates/_helpers.tpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,12 @@ wiz.io/runner: {{ .runner | quote }}
7777
{{- $moduleType = "remediation" }}
7878
{{- else if eq $runner "container-registry" -}}
7979
{{- $moduleType = "container-registry" }}
80+
{{- else if eq $runner "datascan" -}}
81+
{{- $moduleType = "datascan" }}
8082
{{- else if hasPrefix "vcs-" $runner -}}
8183
{{- $moduleType = "vcs" }}
8284
{{- else -}}
83-
{{- fail (printf "Invalid runner name: %s. Runner name must start with 'rem-', 'vcs-', or be 'container-registry'" $runner) -}}
85+
{{- fail (printf "Invalid runner name: %s. Runner name must start with 'rem-', 'vcs-', or be 'container-registry', 'datascan'" $runner) -}}
8486
{{- end }}
8587
8688
{{/* e.g. remediation-aws-rds-003 -> outpost-lite-runner-remediation

wiz-outpost-lite/templates/deployment.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ spec:
165165
- mountPath: /usr/local/share/ca-certificates/
166166
name: ca-certificate
167167
readOnly: true
168+
{{- range $secretName := .Values.secrets }}
169+
- mountPath: /mnt/secrets/{{ $secretName }}
170+
name: {{ $secretName }}
171+
readOnly: true
172+
{{- end }}
168173
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
169174
{{- with .Values.nodeSelector }}
170175
nodeSelector:
@@ -193,6 +198,11 @@ spec:
193198
- key: caCertificate
194199
path: root.crt
195200
optional: true
201+
{{- range $secret := .Values.secrets }}
202+
- name: {{ $secret }}
203+
secret:
204+
secretName: {{ $secret }}
205+
{{- end }}
196206
---
197207
{{- end }}
198208
{{- end }}

wiz-outpost-lite/values.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,27 @@ modules:
109109
- SYS_ADMIN
110110
seLinuxOptions:
111111
type: spc_t
112+
datascan:
113+
enabled: false
114+
serviceAccount:
115+
create: true
116+
podSecurityContext:
117+
runAsNonRoot: true
118+
runAsUser: 1000
119+
runAsGroup: 1000
120+
fsGroup: 1000
121+
containerSecurityContext:
122+
capabilities:
123+
drop:
124+
- ALL
125+
runAsNonRoot: true
126+
runAsUser: 1000
127+
runAsGroup: 1000
128+
allowPrivilegeEscalation: false
129+
privileged: false
130+
readOnlyRootFilesystem: true
131+
seLinuxOptions:
132+
type: container_t
112133
remediation:
113134
enabled: false
114135
serviceAccount:
@@ -140,3 +161,5 @@ encryption:
140161
create: false
141162
secretName: "" # defaults to wiz-encryption-key-<outpostID>
142163
privateKey: ""
164+
165+
secrets: [] # List of secrets to be used by the runner pod

0 commit comments

Comments
 (0)