Skip to content

Commit 85e1f29

Browse files
committed
feat(helm): allow to set log level in operator
Signed-off-by: Carlos Rodriguez-Fernandez <[email protected]>
1 parent bdb092b commit 85e1f29

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

deployments/helm/KubeArmorOperator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: v1.4.0
16+
version: v1.4.2
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: v1.4.0
21+
appVersion: v1.4.2

deployments/helm/KubeArmorOperator/templates/deployment.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ spec:
3232
# initDeploy flag is only supported from v1.4.0
3333
args:
3434
- --initDeploy={{.Values.kubearmorOperator.initDeploy }}
35+
- --loglevel={{.Values.kubearmorOperator.logLevel}}
3536
{{- end }}
3637

3738
serviceAccountName: {{ .Values.kubearmorOperator.name }}

deployments/helm/KubeArmorOperator/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ kubearmorOperator:
3737
tag: ""
3838
imagePullPolicy: IfNotPresent
3939
initDeploy: true
40+
logLevel: info
41+
4042

4143
kubearmorConfig:
4244
defaultCapabilitiesPosture: audit

0 commit comments

Comments
 (0)