Kubectl exec command to write contents to a file in the pod

3/9/2018

I am trying below command

kubectl exec -it sss-pod-four  echo "hi" >> /mnt/sss/testnew.txt

But it throws error

-bash: /mnt/sss/testnew.txt: No such file or directory

What is the best way to achieve this

-- ambikanair
exec
kubectl
kubernetes

1 Answer

3/9/2018

Found a similar question here and below command works now

 kubectl exec -it sss-pod-four  -- bash -c "echo hi > /mnt/sss/testnew.txt" 
-- ambikanair
Source: StackOverflow