Difference between revisions of "Kubectl cp"

From wikieduonline
Jump to navigation Jump to search
Line 28: Line 28:
 
  [[tar]]: removing leading '/' from member names
 
  [[tar]]: removing leading '/' from member names
  
 +
 +
[[kubectl exec]] <pod_name> -- ls -la /
  
 
== See also ==
 
== See also ==

Revision as of 22:56, 23 October 2023

kubectl cp
kubectl cp youfile.txt remotepod:/yourdestinationdata
kubectl apply -f

https://stackoverflow.com/questions/50375826/kubernetes-how-to-download-a-persistentvolumes-content

apiVersion: v1
kind: Pod
metadata:
  name: dataaccess
spec:
  containers:
  - name: alpine
    image: alpine:latest
    command: ['sleep', 'infinity']
    volumeMounts:
    - name: mypvc
      mountPath: /data
  volumes:
  - name: mypvc
    persistentVolumeClaim:
      claimName: mypvctocopy
kubectl cp dataaccess:/data data/
tar: removing leading '/' from member names


kubectl exec <pod_name> -- ls -la /

See also

Advertising: