Skip to content
Snippets Groups Projects
Verified Commit c2794b71 authored by Philipp S. Sommer's avatar Philipp S. Sommer
Browse files

make rwx the default accessmode for volumes

parent da1aba0b
No related branches found
No related tags found
No related merge requests found
Pipeline #266289 passed
{
"template": "https://codebase.helmholtz.cloud/hcdc/software-templates/helm-chart-template.git",
"commit": "b771239672d80d31bf42811d8262a390541a3850",
"commit": "0b139802f10e39448abba4870641e6a143bb804d",
"checkout": null,
"context": {
"cookiecutter": {
......
......@@ -28,7 +28,7 @@ spec:
accessModes: {{ toYaml $options.accessModes | nindent 4 }}
{{- else }}
accessModes:
- ReadWriteOnce
- ReadWriteMany
{{- end }}
resources:
requests:
......
......@@ -51,8 +51,8 @@ volumes: {}
# projected: {} # alternative to creating a PVC, see https://docs.openshift.com/container-platform/4.10/nodes/containers/nodes-containers-projected-volumes.html
# volumeName: <some-pv> # the name of a PersistentVolume, e.g. if you want to mount via NFS
# mountOnly: false # optional, if the volume is created somewhere else
# accessModes: # optional, list of access modes within the container. if omitted, we use ReadWriteOnce
# - "ReadWriteOnce"
# accessModes: # optional, list of access modes within the container. if omitted, we use ReadWriteMany
# - "ReadWriteMany"
# deploymentStrategy is the strategy used for rolling out new pods by the
# Deployment. Can be either RollingUpdate or Recreate. Recreate will shut down
# the existing deployment before creating a new one.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment