You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update version badge and info callout, fix image.tag default (empty
string, not hardcoded CLI version), and correct OpenShift securityContext
guidance — users must explicitly set runAsUser: null, not omit it.
Upstream fix for the auto-generated .md tracked in kosli-dev/cli#853.
The security context for the reporter cronjob. Set to null or `{}` to disable security context entirely (not recommended). For OpenShift, you can omit `runAsUser` to let OpenShift assign the UID.
235
+
The security context for the reporter cronjob. Set to null or `{}` to disable security context entirely (not recommended). For OpenShift with SCC, explicitly set `runAsUser: null` to let OpenShift assign the UID from the allowed range. Simply omitting `runAsUser` from your values override will not work because Helm deep-merges with the chart defaults.
236
236
237
237
Default:
238
238
```json
@@ -253,7 +253,7 @@ If you already run [cert-manager's trust-manager](https://cert-manager.io/docs/t
The user id to run as. Omit this field for OpenShift environments to allow automatic UID assignment.
256
+
The user id to run as. For OpenShift environments with SCC, set to `null` (`runAsUser: null`) to allow automatic UID assignment. Simply omitting this field will not work due to Helm's deep merge with chart defaults.
0 commit comments