kubectl logs <pod_name>
.kubectl create deployment
command to create a Deployment manifest file.kubectl apply -f <manifest_file>
command to apply the Deployment.kubectl create job
command to create a Job manifest file.kubectl apply -f <manifest_file>
command to apply the Job.kubectl create cronjob
command to create a CronJob manifest file.
kubectl apply -f <manifest_file>
command to apply the CronJob.