Difference between revisions of "VolumeMounts:"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 32: Line 32:
  
 
  {{alpine cp example}}
 
  {{alpine cp example}}
 +
 +
  
 
== Related ==
 
== Related ==
 
* <code>[[Kubernetes volumes|volumes:]]</code>
 
* <code>[[Kubernetes volumes|volumes:]]</code>
 
* <code>[[spec.volumes]]</code>
 
* <code>[[spec.volumes]]</code>
 +
* [[Access a volume with a temporary pod]]
  
 
== See also ==
 
== See also ==

Latest revision as of 16:08, 8 February 2024

.spec.containers[*].volumeMounts
apiVersion: v1 
kind: Pod
metadata:
  name: test-ebs
spec:
  containers:
  - image: registry.k8s.io/test-webserver
    name: test-container
    volumeMounts:
    - mountPath: /test-ebs
      name: test-volume
  volumes:
  - name: test-volume
    # This AWS EBS volume must already exist.
    awsElasticBlockStore:
      volumeID: "<volume id>"
      fsType: ext4


   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: