Creating the first pod in Kubernetes
To create the pod let's first install the Minikube from here.
Let's start with the basic pod.
vi first-pod.yml
kind: Pod
apiVersion: v1
metadata:
name: my-pod
spec:
containers:
- name: container1
image: ubuntu
command: ["/bin/bas...
blog.sandeepdhungana.com.np3 min read