Difference between revisions of "MountPath"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
 
Line 20: Line 20:
 
== Related ==
 
== Related ==
 
* [[host_path]] in [[ECS]]
 
* [[host_path]] in [[ECS]]
 +
* [[Distribute Credentials Securely Using Secrets]]
  
 
== See also ==
 
== See also ==

Latest revision as of 11:03, 15 October 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[edit]

See also[edit]

Advertising: