Imran_Kubernet_assignment

what is pod?. ->Pod is a collection of conatiner. -> It is storage inside a node of kubernet clusters. Types of Pod. Single Container Pod –> With the help of kubectl command we can create single container pod. kubectl run <name of the Pod> –image=<name of the image from registry> kubectl run jboss –image=jboss6.1 2. Multi Container Pod.-> it can be created using yaml mail with defenation of the container. Below is the example apiVersion: v1kind: Podmetadata:name: Jbossspec:containers: name: Tomcatimage:

Read more

Imran Khan Docker Training

What is Docker?. Docker is container management service. Docker is a easy for developer to develop application, ship them into conatiner which can deployed anywhere. 2. What is Container?. Container are instance of docker images. Container can run using docker run command. The below command is used to run the conatiner. The basic purpose of docker to run container. The below command is to run the centos instace on ubuntu system. docker run -it centos /bin/bash 3. Top 10 commands

Read more