fix: Set defaults for the securityContext#149
Conversation
securityContext
Introduce default security context for the deployment to align with trivy rules:
```yaml
securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
allowPrivilegeEscalation: false
seccompProfile:
type: RuntimeDefault
```
|
this looks good to me. i originally was going to say to make this a major version bump since its a breaking change technically, but i think the only situation where its breaking is if |
Moreover, we are on the v0.x.x, where minor version bumps can have breaking changes |
# Description Release the v0.11.0 version # Changelog ## [netobserv-flow-0.11.0] - 2026-06-02 ### Bug Fixes - Set defaults for the `securityContext` (#149) ### Features - **netobserv-flow:** Bump collector appVersion to 7.26.0 (#148) [netobserv-flow-0.10.0..netobserv-flow-0.11.0](netobserv-flow-0.10.0...netobserv-flow-0.11.0) Co-authored-by: maksym-iv-ef <146473578+maksym-iv-ef@users.noreply.github.com>
Description
Introduce default security context for the deployment to align with trivy rules:
Please take the rules into the account when upgrading