diff --git a/charts/stable/photoview/docs/installation_notes.md b/charts/stable/photoview/docs/installation_notes.md index 24e445f871e..d5259ccd106 100644 --- a/charts/stable/photoview/docs/installation_notes.md +++ b/charts/stable/photoview/docs/installation_notes.md @@ -3,14 +3,12 @@ title: Installation Notes --- In case you want to use `darktable` and it's features inside the app, -you have to run the app as `root` (`0`). +you have to run the app as `root`. -Under `Security and Permissions` - -- Check `Show Advanced Security Settings` - - Uncheck `ReadOnly Root Filesystem` - -Under `Pod Security Context` - -- runAsUser: `0` -- runAsGroup: `0` +``` yaml +securityContext: + container: + readOnlyRootFilesystem: false + runAsGroup: 0 + runAsUser: 0 +```