File tree Expand file tree Collapse file tree 6 files changed +11
-1
lines changed Expand file tree Collapse file tree 6 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ All changes to this chart will be documented in this file.
4
4
## [ 10.4.0]
5
5
* Update Chart's version to 10.4.0
6
6
* Improve the description of deprecated ` ApplicationNodes.jvmOpts ` and ` ApplicationNodes.jvmCeOpts ` values
7
+ * Run the initSysctl init-container as root to prevent 'permission denied' issues
7
8
8
9
## [ 10.3.0]
9
10
* Upgrade SonarQube to 10.3.0
@@ -239,7 +240,7 @@ All changes to this chart will be documented in this file.
239
240
* added link to community support forum
240
241
241
242
## [ 0.1.6]
242
- * fixed wrong scc user reference if name was explicitly set
243
+ * fixed wrong scc user reference if name was explicitly set
243
244
244
245
## [ 0.1.5]
245
246
* fixed serviceaccount logic
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ annotations:
31
31
description: "Update Chart's version to 10.4.0"
32
32
- kind: fixed
33
33
description: "Improve the description of deprecated 'ApplicationNodes.jvmOpts' and 'ApplicationNodes.jvmCeOpts' values"
34
+ - kind: fixed
35
+ description: "Run the initSysctl init-container as root to prevent 'permission denied' issues"
34
36
artifacthub.io/links : |
35
37
- name: support
36
38
url: https://community.sonarsource.com/
Original file line number Diff line number Diff line change @@ -461,6 +461,8 @@ initSysctl:
461
461
securityContext :
462
462
# Compatible with podSecurity standard privileged
463
463
privileged : true
464
+ # if run without root permissions, error "sysctl: permission denied on key xxx, ignoring"
465
+ runAsUser : 0
464
466
# resources: {}
465
467
466
468
initFs :
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ All changes to this chart will be documented in this file.
4
4
## [ 10.4.0]
5
5
* Update Chart's version to 10.4.0
6
6
* Improve the description of deprecated ` jvmOpts ` and ` jvmCeOpts ` values
7
+ * Run the initSysctl init-container as root to prevent 'permission denied' issues
7
8
8
9
## [ 10.3.0]
9
10
* Upgrade SonarQube to 10.3.0
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ annotations:
36
36
description: "Update Chart's version to 10.4.0"
37
37
- kind: fixed
38
38
description: "Improve the description of deprecated 'jvmOpts' and 'jvmCeOpts' values"
39
+ - kind: fixed
40
+ description: "Run the initSysctl init-container as root to prevent 'permission denied' issues"
39
41
artifacthub.io/containsSecurityUpdates : " false"
40
42
artifacthub.io/images : |
41
43
- name: sonarqube
Original file line number Diff line number Diff line change @@ -243,6 +243,8 @@ initSysctl:
243
243
securityContext :
244
244
# Compatible with podSecurity standard privileged
245
245
privileged : true
246
+ # if run without root permissions, error "sysctl: permission denied on key xxx, ignoring"
247
+ runAsUser : 0
246
248
# resources: {}
247
249
248
250
# This should not be required anymore, used to chown/chmod folder created by faulty CSI driver that are not applying properly POSIX fsgroup.
You can’t perform that action at this time.
0 commit comments