Difference between revisions of "MountPath"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 15: Line 15:
 
       [[readOnly]]: true
 
       [[readOnly]]: true
  
 +
 +
{{Alpine with volume}}
  
 
== Related ==
 
== Related ==

Revision as of 16:11, 8 February 2024

extraVolumeMounts: |
   - name: mynewvolume
     mountPath: /usr/share/extras
     readOnly: true


   volumeMounts:
   - mountPath: /data
     name: persistent-storage
   - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
     name: kube-api-access-jhnds
     readOnly: true


apiVersion: v1
kind: Pod
metadata:
  name: myalpinewithvolume
spec:
  containers:
  - name: alpine
    image: alpine:latest
    command: ['ash']
    tty: true
    stdin: true
    volumeMounts:
    - name: myvolume
      mountPath: /myvolume
  volumes:
  - name: myvolume
    persistentVolumeClaim:
      claimName: myPVCtoMount

Related

See also

Advertising: