The .agent.securityContext.readOnlyRootFilesystem toggle is being rendered into the output Pod YAML spec and causing validation warnings upon deployment:
"Warning: unknown field \"spec.securityContext.readOnlyRootFilesystem\""
"Warning: unknown field \"spec.template.spec.securityContext.readOnlyRootFilesystem\""
Easy fix would probably be to move this chart-specific toggle upwards and outwards of the securityContext blocks, since the chart appears to be raw-rendering the entire .agent.securityContext.* block into the output with toYaml.
The
.agent.securityContext.readOnlyRootFilesystemtoggle is being rendered into the outputPodYAML spec and causing validation warnings upon deployment:Easy fix would probably be to move this chart-specific toggle upwards and outwards of the
securityContextblocks, since the chart appears to be raw-rendering the entire.agent.securityContext.*block into the output withtoYaml.