I create a pod by configuration file with a volume and privileged security.
How can I deploy this pod?
I try to deploy with kubectl run or deployment configuration file. it's created a new pod without my volume and security privileged.
Best regards, Daniel
Use these commands to create and verify
This will create the pod
# kubectl create -f abc-pod.ymlThis will list the running pods
# kubectl get podsThis will show the details of that pod
# kubectl describe pod <pod_name>This will show the logs of pods
# kubectl logs pod_name container_name