I'm currently working on a dev instance of our production Confluence DC and running into the following permission error when the pod tries to start.

Openshift 4.10.56
Helm 3
Confluence 7.14.3
Chart.yaml
````
values.yaml
````
# Default values for confluence.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
tag: ""
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
ingress:
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
external: true
host: confluence-dev.com
volume:
name: ""
resources:
limits:
cpu: "4"
memory: 12Gi
requests:
cpu: "4"
memory: 12Gi
nodeSelector: {}
tolerations: []
affinity: {}````