Day-33 | KUBERNETES PODS | DEPLOY YOUR FIRST APP |

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 พ.ย. 2024

ความคิดเห็น • 197

  • @vback4238
    @vback4238 ปีที่แล้ว +10

    I just finished watching it. I love how you break things down for us to understand. You are the best!!!

  • @sangativamsikrishna1691
    @sangativamsikrishna1691 ปีที่แล้ว +12

    Thanks for all your efforts and support to this Devops community Abhishek, really much appreciated and you explain the things in a simple and easy way. Thankyou so much Abhishek

  • @udaykarthick1825
    @udaykarthick1825 ปีที่แล้ว +3

    Thank you Abhishek for this course, now I feel that kubernetes is easy

  • @manishbhardwaj4587
    @manishbhardwaj4587 8 หลายเดือนก่อน +2

    Thank you, I am profoundly humbled, beyond what I could have imagined.
    👐👐

  • @simpletothink9855
    @simpletothink9855 ปีที่แล้ว +3

    Thanks Abhishek,
    I practiced its working and i thought Kubernetes is very difficult to understand by way of your explanation it was clear understanding, thank you so much

  • @DigitalDreamScapesNetwork
    @DigitalDreamScapesNetwork ปีที่แล้ว +3

    Thank you for all your efforts and support and What I like mostly is "like I told you & basically"😊

  • @Cloudnp9458
    @Cloudnp9458 10 หลายเดือนก่อน +9

    Most of the time pod is a single container. But sumtime you have side car or init container, that read config file or any file from other container and utilize it
    Ip address are generated for pod from range of podCIDR.
    Pod is a wrapper around container.
    Kubeproxy generates the ip address for pod( cluster ip address).
    Kubernetes allow shared networking and shared storage for multi container pod. Since localhost communication happens within the pod.

    • @jamespanchol6402
      @jamespanchol6402 5 หลายเดือนก่อน

      Inaccurate Points:
      Pod IP Address Allocation:
      PodCIDR Range: Correct, IP addresses for Pods are typically allocated from a range defined by the podCIDR assigned to each node.
      CNI Plugin Role: The CNI (Container Network Interface) plugin is responsible for assigning IP addresses to Pods and setting up their networking.
      Kube-Proxy's Role: kube-proxy does not generate IP addresses for Pods. Instead, it manages network rules for routing traffic to Services within the cluster. kube-proxy sets up rules to handle traffic to ClusterIP addresses but does not assign these IP addresses.
      ClusterIP Address Assignment:
      ClusterIP: The ClusterIP is a virtual IP address assigned to a Kubernetes Service by the Kubernetes API server, not by kube-proxy. This IP address allows Pods to communicate with each other through Services.
      Corrected and Detailed Explanation:
      IP Address Assignment for Pods:
      When a Pod is scheduled on a node, the Kubernetes control plane (API server and scheduler) coordinates with the kubelet running on the node.
      The kubelet invokes the CNI plugin to create the network namespace for the Pod and assigns it an IP address from the podCIDR range allocated to the node.
      kube-proxy's Function:
      kube-proxy watches the Kubernetes API for changes to Services and Endpoints.
      It maintains network rules on each node to direct traffic from Services to the appropriate Pods using mechanisms like iptables or IPVS.
      Communication Within Pods:
      Containers within a Pod share the same network namespace, allowing them to communicate via localhost.
      They also share storage volumes defined in the Pod specification, enabling shared data access.
      ClusterIP Assignment:
      When a Service is created, the Kubernetes API server assigns it a ClusterIP from the service-cluster-ip-range specified in the API server configuration.
      kube-proxy then sets up the necessary rules to route traffic to the Service's ClusterIP to the appropriate backend Pods.
      Summary
      Pod IPs: Managed by the CNI plugin, allocated from the node’s podCIDR.
      ClusterIP: Assigned by the Kubernetes API server, not by kube-proxy.
      kube-proxy: Manages network rules for Service traffic, does not assign IPs.
      Pod Networking: Shared network namespace and localhost communication within the Pod.
      Pod Storage: Shared volumes for data sharing between containers in a Pod.
      By understanding these roles and processes, it's clear how Kubernetes manages container networking and addresses within the cluster.

    • @vishalhedaoo1010
      @vishalhedaoo1010 5 หลายเดือนก่อน

      @@jamespanchol6402 Bro @11.59 abhishek mentioned that Kubeproxy generates the cluster Ip address

  • @sushreesravani4297
    @sushreesravani4297 ปีที่แล้ว +2

    Thank you Abhishek. You are a Gem. Kubernetes was never this easy for me.

  • @bivekyadav08
    @bivekyadav08 4 หลายเดือนก่อน

    This man is og
    i have been learning kubernetes was not that much clear but lots of doubt has be made clear
    Thanks for the videos

  • @maheshmayyu9716
    @maheshmayyu9716 ปีที่แล้ว +1

    Thank you abhishek .The way you are Teaching is faboulous

  • @vback4238
    @vback4238 ปีที่แล้ว +4

    Yes!!!! I have been refreshing my TH-cam since yesterday, waiting for your video. I'm about to watch it. By the way, you labeled it Day 30 instead of Day 33.

  • @PrachiBhoj-k8v
    @PrachiBhoj-k8v ปีที่แล้ว +1

    Thank you so much sir for sharing such a great knowledge of k8's with us
    😊

  • @Rorschach_ind
    @Rorschach_ind ปีที่แล้ว +1

    Thank You Sir!
    After a lot of trying, i have done it.

  • @DevOps-focused
    @DevOps-focused ปีที่แล้ว +2

    Your Superb bro and excellent effort tqsm 👌 👏🏿 🙌 💪

  • @atulghodmare
    @atulghodmare ปีที่แล้ว +1

    hats off to your efforte sir but can u please display how to install kubectl and minikubes on ec2 instance?

  • @Venkat-os4zk
    @Venkat-os4zk 5 หลายเดือนก่อน

    Thank you so much for shared these information's.

  • @PrincePazol
    @PrincePazol 7 หลายเดือนก่อน +2

    Congrats to me. I have made it to Day 33 🎈

  • @rudypieplenbosch6752
    @rudypieplenbosch6752 5 หลายเดือนก่อน

    Great explanation thanks was looking for this, have a RKE2 cluster that is finally configured how i want, now i'm ready to put pods on it and use Longhorn instead of that crappy mounting we did with docker.

  • @0986rashmi
    @0986rashmi 8 หลายเดือนก่อน +1

    Hi Abhishek : at @5:54 you are mentioning that we use Docker CLI to have the configuration but Docker also Supports Docker compose to build the multi-container with the YAML . I think POD has different context You can’t compare this in-terms of CLI or YAML files .

  • @yoursyasuo5868
    @yoursyasuo5868 ปีที่แล้ว +2

    Woohoo! I love Kubernetes!

  • @atanudas100
    @atanudas100 ปีที่แล้ว

    Thank you explain the things in a simple and easy way, can you show how to setup k8s in production.

  • @arifs5022
    @arifs5022 ปีที่แล้ว

    Congratz Abhishek for 100K subscribers. I am proud that I am one of them 😊

  • @Gabru-f9q
    @Gabru-f9q 11 หลายเดือนก่อน +1

    hey abhishek anna , loving your videos gaining immersive knowledge as well , just a request if possible can we get a video on managing these services on an actual k8's or eks ?
    it would be really great

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  11 หลายเดือนก่อน

      Its already available. Check day-23 in aws playlist

    • @Gabru-f9q
      @Gabru-f9q 11 หลายเดือนก่อน

      @@AbhishekVeeramalla sure , thank you for the reply, ♥️

  • @Aman-fz1ew
    @Aman-fz1ew 2 หลายเดือนก่อน

    Quality Content .

  • @tadomari1781
    @tadomari1781 4 หลายเดือนก่อน

    who, what, how, is the decision on the number of master/worker nodes to be created decided?? how does one know how many master nodes, how many worker nodes are to be created? i.e. what is the rationale for deciding on the architecture/layout of a cluster (how many master notes/worker nodes are to be in a cluster)???

  • @devops-i5e
    @devops-i5e 3 หลายเดือนก่อน +1

    thanks bro for teaching us

  • @Venkat-os4zk
    @Venkat-os4zk 5 หลายเดือนก่อน

    Thank you so much for sharing!

  • @TechiesLife
    @TechiesLife 7 หลายเดือนก่อน +1

    Thanks a lot! this really helps!

  • @sekharm7621
    @sekharm7621 9 หลายเดือนก่อน +1

    Bro please provide a video for installation of minicube or provide a video link bro please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏i am trying.but minicube not started..

  • @satyamsingh7397
    @satyamsingh7397 9 หลายเดือนก่อน +1

    Hi Sir @Abhishek as always great content, learning a lot from your videos ❤❤❤
    One DOUBT-- when we use CMD Promt or Power shell we are not able to use VIM commands , pls let us know how to resolve this issue or if we can use any other cmd line in windows

  • @durgaprasadpatra892
    @durgaprasadpatra892 28 วันที่ผ่านมา

    sir video is very enthralling but while using instances, it is not executing thrwoing error

  • @farikdk
    @farikdk ปีที่แล้ว

    Very informative channel. May I to ask to record series on SQL/NoSQL and database concepts?

  • @jaykumaranbu7173
    @jaykumaranbu7173 ปีที่แล้ว +1

    Nice one

  • @ubakavincent2587
    @ubakavincent2587 2 หลายเดือนก่อน +1

    do i need to lunch a server for me to run my first Kubernetes for this lesson pls cos i have tried my terminal with visual studio but not connecting . or how do i get a complete video with window installation to make my life good plsssssssss

  • @senthilkumar5129
    @senthilkumar5129 ปีที่แล้ว +1

    Hi Abishek i have Two Question 1. In organization using private git Repository OR Public Repository and 2. Docker Repository whether Public or Private Repository use please

    • @RahulYadav-nk6wp
      @RahulYadav-nk6wp ปีที่แล้ว

      Private repositories for both git and docker containers.

  • @1995akshaypatil
    @1995akshaypatil 4 หลายเดือนก่อน +1

    Hello abhishek please cerate plalist for openshift also 🙏

  • @allinone-qp7zi
    @allinone-qp7zi ปีที่แล้ว +2

    Hi bro Im about to start course, the question from my side can i crack interview as 3+ experience guy after going through all your videos perfectly..

  • @ravikumarsrivastava4835
    @ravikumarsrivastava4835 4 หลายเดือนก่อน

    I have learned a lot from this video. i have done practical task on it successfully. But I have some questions in my mind after the practically execution of this video.
    1) can we see the nginx page on our browser?
    2)i have used ubuntu server of AWS.... and used Docker as a driver. is it good practice or do we have any other option for ubuntu.

    • @Nissy_joy
      @Nissy_joy 3 หลายเดือนก่อน

      Hi how u did can u help me, it was saying I need 2cpu at least when I run the command minikube start I'm not getting here

  • @samuelude6858
    @samuelude6858 11 หลายเดือนก่อน

    Just for doubt clarification, Minikube now support multi node cluster right? Thanks so much you are the best.

  • @reneshmlal2809
    @reneshmlal2809 7 หลายเดือนก่อน +1

    Thank You ❤ But I have a doubt, Is kubernetes really tough or you just made K8s simple ? You are having a great teaching skill Brthr.

  • @Avtraders-r4i
    @Avtraders-r4i 22 ชั่วโมงที่ผ่านมา

    Hi Abhishek, i'm using mac and i have installed docker desktop. Now the issue is when i execute 'minikube start' it says "Exiting due to RSRC_DOCKER_CORES: Docker Desktop has less than 2 CPUs configured" but when i check in docker console it showing CPU limit as "12" and if i execute docker info there i can see "CPU:1". I tried chatgpt and i uninstalled and re-installed docker desktop but still issue is occurring. Any idea from your side for resolution ? Thanks!!

  • @anilkumar-cw5jd
    @anilkumar-cw5jd ปีที่แล้ว +4

    Hi sir i'm getting this error while starting minikube
    The connection to the server localhost:8080 was refused - did you specify the right host or port?

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว +1

      that means that your kubernetes cluster is not started.

    • @prasanthnaidu7060
      @prasanthnaidu7060 ปีที่แล้ว

      Same error i got.... what should I do plzz help mee

    • @prashanthnaidu-bc7hs
      @prashanthnaidu-bc7hs ปีที่แล้ว

      @@AbhishekVeeramalla how can I start...i got error local host 8080 was refused.. help me bro

    • @tushartyagi2327
      @tushartyagi2327 ปีที่แล้ว

      Same error if kise k solve hua toh batao please 😢

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      That means your minikube cluster is not started. Or kubeconfig file is not pointing to minikube

  • @narayanamsandeep4848
    @narayanamsandeep4848 4 หลายเดือนก่อน +1

    hi abhishek, as i am trying to install minikube in EC2 instance it is getting an error
    " New-Item: command not found
    Invoke-WebRequest: command not found "
    does EC2 instance support minikube or not ?

  • @harendrakumar5137
    @harendrakumar5137 ปีที่แล้ว +1

    Best platform for kubernetes practices??

    • @rsanjay1523
      @rsanjay1523 3 หลายเดือนก่อน

      Killer coda

  • @rji4076
    @rji4076 ปีที่แล้ว +2

    Thaaaanksssss Abhishek, you rock.....

  • @javeedjafar4973
    @javeedjafar4973 ปีที่แล้ว +1

    Hi abhi
    In real environment where does Kubectl installed in master panel or in our laptop. or , Both.

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      on the virtual machine or office laptop that you are using

  • @sangativamsikrishna1691
    @sangativamsikrishna1691 ปีที่แล้ว +1

    Also Abhishek, I have doubt that in order to access that nginx inside the pod we can you use that IP address with port no right

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      You can use kubectl exec -it nginx to login to the pod.
      But before that you have to do
      minikube ssh

  • @Cloudnp9458
    @Cloudnp9458 10 หลายเดือนก่อน

    How do you debug a pod.. Kubectl describe pod and it will print information of pod and get issues inside the pod , events kubectl logs

  • @jafferwilson1633
    @jafferwilson1633 4 หลายเดือนก่อน +1

    I am not able to run the KubeCtl after installation. I am getting error: The connection to the server localhost:8080 was refused - did you specify the right host or port? Is it suppose to happen like this? What you have displayed is not exactly what I am getting. Please let me know why and what to do to get rid of this scenario.

    • @Nissy_joy
      @Nissy_joy 3 หลายเดือนก่อน

      Heyy I'm also getting the same issue did u got answer pls tell me too if u solved

  • @Sai-vzm
    @Sai-vzm ปีที่แล้ว +1

    If interviewer ( Deloitte )ask to me 1st questions?
    What is your project and tell me architecture and in that project what is your roles and responsibility explain to me briefly ?
    In my resume I was putting
    K8S and docker and terraform and cicd-Jenkins and aws

  • @saeedbell3328
    @saeedbell3328 10 หลายเดือนก่อน +1

    Can I follow this if I use Azure instead of AWS ( is it vendor-focused, or is it generic to all K8s)?

  • @RajuSingh001732
    @RajuSingh001732 ปีที่แล้ว +1

    I did the cluster set-up in Kubernetes using Kubeadm in azure Cloud with multipe nodes, but i have a question here can we use kubeadm tool for setting up the Kubernetes cluster in production?

  • @jasmeenkaur6001
    @jasmeenkaur6001 ปีที่แล้ว

    if we are created cluster, not we don't need to create pod separately ? right , we are just running the pod ?
    but then what if in case of kubernetes deployement , here we also have pods?

  • @abhinayyalla
    @abhinayyalla ปีที่แล้ว

    hi abhi
    can u make one video regarding eks , minikube , openshift etc and also while learning aws devops which one should we learn eks or the one u r teaching us

  • @diwakarkumar2319
    @diwakarkumar2319 3 หลายเดือนก่อน

    Hi Abhishek, How can we use minikube or kind on WSL2?

  • @abilashabi1941
    @abilashabi1941 หลายเดือนก่อน

    Hi @abhishek
    I see you mentioned minikube ssh which gets into cluster is that means logging into that nginx container or the minikube pod?

    • @Neeakkandenga
      @Neeakkandenga หลายเดือนก่อน

      Entering into the cluster and then he's using the node IP address because minikube is basically a single node architecture..
      Curl up address to enter into that particular node...
      Hope you got the point..👍

  • @ajaykavitha
    @ajaykavitha ปีที่แล้ว

    thanks for the great video sir🤟. when i created pods the internal ip is assigned as public and it shows my external ip is pending how to i login into cluster and check the status and atlast it is given as error could not connect how to resolve this error

  • @adarshjha__1
    @adarshjha__1 ปีที่แล้ว

    Day-33 Done✅

  • @swedhasivamayilvelan509
    @swedhasivamayilvelan509 ปีที่แล้ว

    what is the diff between kubectl apply -f pod and kubectl create -f pod? because you have used both in this video...

    • @swapnilsingh7170
      @swapnilsingh7170 7 หลายเดือนก่อน

      create can be used only for the ist time while creating whereas apply can be used any no of times for modifying ur yml file

  • @thestarters9799
    @thestarters9799 9 หลายเดือนก่อน

    Why didn't u use kubernetes extension of Docker Desktop

  • @malathikamera2749
    @malathikamera2749 4 หลายเดือนก่อน

    Thank you so much

  • @OmDevOps825
    @OmDevOps825 8 หลายเดือนก่อน +1

    ⛔ exiting due to rsrc_insufficient_cores: has less than 2 cpus available, but kubernetes requires at least 2 to be available (what should i do now !!!!)

    • @Nissy_joy
      @Nissy_joy 3 หลายเดือนก่อน

      Ur problem got solved??

    • @Nissy_joy
      @Nissy_joy 3 หลายเดือนก่อน

      I'm also getting the same issue help me out nahh

  • @saiprasad3171
    @saiprasad3171 8 หลายเดือนก่อน

    Hi Abhishek, I have one doubt about the Minikube driver! I am a Windows user and I have installed Minikube with the default docker driver When I am playing around with Minikube and GitOps. I get the error that is unable to resolve the docker driver. My question is what would be the best docker driver for Windows while practicing with advanced topics and the time stamp is 21:30.

  • @Sri-mx7zj
    @Sri-mx7zj หลายเดือนก่อน

    Pod is evicted with ephemeral storage issue when describe pod ,pod, we still have storage space in the node. What could be the reason

  • @shashankchoubey9253
    @shashankchoubey9253 10 หลายเดือนก่อน

    I use Ubuntu Client VM on top of my windows machine, post running minikube cluster on it using Docker as driver the machine crashed, :(

  • @selvamurugan9790
    @selvamurugan9790 7 หลายเดือนก่อน

    Hi how to add the nodes? How exactly Pod.yml identify the nodes

  • @PranatiSree
    @PranatiSree 10 หลายเดือนก่อน

    Hi Abhishek, in a production environment how can we avoid a kubernetes pod to go down since the application we are running is having a stateful session. Pod going down is giving us a bad user experience

  • @ShivamPawar-l7c
    @ShivamPawar-l7c 9 วันที่ผ่านมา

    Hello @AbhishekVeeramalla , does kubernetes basic configuration has changed now? I tried exact steps shown in video but getting two errors (1) Exiting due to RSRC_INSUFFICIENT_CORES: Docker has less than 2 CPUs available, but Kubernetes requires at least 2 to be available (2) And second is about memory that it says at least 1800MB required for kubernetes. I used aws EC2 instance(t2.micro, 1CPU, 1GB Memory)

    • @ShivamPawar-l7c
      @ShivamPawar-l7c 9 วันที่ผ่านมา

      I also tried with hyperkit but it says "hyperkit not supported on linux x86-64". I used ubuntu linux on AWS.

  • @senthilkumar5129
    @senthilkumar5129 4 หลายเดือนก่อน

    How to deploy docker image in qa environment using kubernet?

  • @DigvijaySingh-e8w
    @DigvijaySingh-e8w 9 หลายเดือนก่อน +1

    in mobatex:- kubectl command is not working...

  • @dileepa-hl
    @dileepa-hl ปีที่แล้ว

    Hi Abhishek, Thanks for the details. As suggested in the video i have followed the steps install K8s cluster and kubectl. When I run kubectl command it is asking for username and password. Please confirm how to resolve this issue.

  • @harendrakumar5137
    @harendrakumar5137 ปีที่แล้ว

    Installed successfully minikube and kubectl but when trying to create yml file on window powershell .. i am not able to create yml file ..

  • @goodthingstech9554
    @goodthingstech9554 ปีที่แล้ว +1

    Sir, can I install Kubectl and minikube inside my free tier aws ec2 instance? it's no charging, right?

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว +1

      Free tier instance will not have enough resources to handle them

    • @goodthingstech9554
      @goodthingstech9554 ปีที่แล้ว

      @@AbhishekVeeramalla Thank you sir

  • @Sai-cc5wh
    @Sai-cc5wh ปีที่แล้ว

    How to create vm for windows and linux while creating cluster. As you said hyperkit for mac can you tell for windows and linux.

  • @krutikayawale1843
    @krutikayawale1843 2 วันที่ผ่านมา

    NAME READY STATUS RESTARTS AGE
    nginxpod 0/1 ErrImagePull 0 70s
    NAME READY STATUS RESTARTS AGE
    nginx 0/1 ImagePullBackOff 0 44s
    how i can solve these error

  • @umeshcp3622
    @umeshcp3622 ปีที่แล้ว

    If we are using real time Kubernetes instead of Minicube... Then can I know the ssh command to deploy the POD...

  • @PeopleOfDubai
    @PeopleOfDubai 9 หลายเดือนก่อน

    hello abhishek, minikube and kubectl aren't opening in my laptop pls help me in rectifying the issue.

  • @MrSatyakamrahul
    @MrSatyakamrahul ปีที่แล้ว +1

    How did you copy the yaml file and paste it on terminal

  • @bharathib.bharathi1641
    @bharathib.bharathi1641 ปีที่แล้ว +1

    Sir I have major issue is how to restart the master and worker node after those instances are stopped because when I have restarted instances worker nodes are in ready mode but master node is Not Ready mode...

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว +1

      Please provide more details .. Which components are not coming up ? Where is this instance ? How are you starting ?

  • @sandeepvemu794
    @sandeepvemu794 ปีที่แล้ว +1

    Abhishek how can install in a local in our Linux environment?
    Is it ok to use windows

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      Yes its ok to use windows .but better to install Linux

    • @sandeepvemu794
      @sandeepvemu794 ปีที่แล้ว

      @@AbhishekVeeramalla Do we need to have vagrant or something.just want to be clear as I havent the Linux in a local.The way of teaching is awesome .is this a 45 days course which we are in 33rd day.

    • @sirisireesha267
      @sirisireesha267 ปีที่แล้ว

      @@AbhishekVeeramalla please provide link to install linux

  • @senthilkumar5129
    @senthilkumar5129 ปีที่แล้ว

    nice

  • @GoofyChaiLoverGirl
    @GoofyChaiLoverGirl 5 หลายเดือนก่อน

    Only if I learnt this 5 years ago.

    • @samiullahk7223
      @samiullahk7223 4 หลายเดือนก่อน

      I learnt but no projects 😂😅

  • @kingdavid526
    @kingdavid526 8 หลายเดือนก่อน

    bro i am confusing about terminal how u installed and how u used it please help me

  • @saigannoju6775
    @saigannoju6775 2 หลายเดือนก่อน

    the commands which your using in Iterm its not working in mobxterm its totally confuised

  • @saikiran7224
    @saikiran7224 ปีที่แล้ว +1

    Abhishek thanks is a small word but you are providing more than we expect, But i have small doubt pod status is showing as running. but how can i check that from browser ? Do we need to give ingress and Egress values? I tried checking with IP:80 but its showing as not reachable .

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว +1

      You will learn that in next videos of the series .. when u learn about services and ingress

    • @saikiran7224
      @saikiran7224 ปีที่แล้ว

      @@AbhishekVeeramalla got you Abhishek thanks a lot !!!

  • @safiullah7303
    @safiullah7303 ปีที่แล้ว +1

    HI abhishek , i have a query , while i try to start minikube i get this error : Exiting due to RSRC_INSUFFICIENT_CORES: Requested cpu count 2 is greater than the available cpus of 1

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว +1

      you need to use t2.medium atleast

    • @safiullah7303
      @safiullah7303 ปีที่แล้ว

      @@AbhishekVeeramalla yess !! Got it !! Thanks for the Reply Abhi ♥️🤝.

  • @himagiribandi
    @himagiribandi ปีที่แล้ว +1

    Sir please please 🙏 provide how to set k8s cluster please this my humble request sir please 🙏🙏🙏🙏🙏🙏🙏🙏

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      Did you watch day 32 ?
      Also check the link the description.
      All the details provided.
      If you want to create a production grade cluster .. watch Day 32 .. created using KOPS
      If you want to do it locally .. watch today video for minikube .. also you can check the link in description.

  • @yaswanthgopi5212
    @yaswanthgopi5212 ปีที่แล้ว +1

    24:00, If i want use my own image which is not present in Docker Hub. How I can use it?

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  ปีที่แล้ว

      Which image .. provide the details.. i can push that

    • @yaswanthgopi5212
      @yaswanthgopi5212 ปีที่แล้ว

      Here you are using an image as nginx:1.14.2. this is available in Docker Hub. In real time like we can't put our images in docker hub right for security purposes. Then how we will use our application image here to deploy as a pod.

  • @VijayP-xz8kx
    @VijayP-xz8kx ปีที่แล้ว

    hi C:\Users\pylav\Downloads>kubectl create -f file.yaml
    Error: unknown shorthand flag: 'f' in -f how to fix it

  • @amansharma-xh6og
    @amansharma-xh6og 3 หลายเดือนก่อน

    Thanks

  • @uhsay1986
    @uhsay1986 8 หลายเดือนก่อน

    Hi Abhishek, you installed kubectl n minikube locally in this session . Is there a session about the same in ec2 as well ?

    • @SasthaSS-o3s
      @SasthaSS-o3s 8 หลายเดือนก่อน

      I too have the same doubt, i couldn't install kubectl and minikube on my local machine

    • @ABHISHEKSINGH-qc3or
      @ABHISHEKSINGH-qc3or 7 หลายเดือนก่อน

      it will be same just choose t-small while creating ec2

  • @nihapatha2777
    @nihapatha2777 10 หลายเดือนก่อน +1

    In powershell if we use vi its showing command recognized please guide me

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  10 หลายเดือนก่อน

      Yes u should not use powershell. Install gitbash and use that shell

  • @kodellibose1096
    @kodellibose1096 ปีที่แล้ว +1

    👌bro

  • @DA-rq3vl
    @DA-rq3vl 5 หลายเดือนก่อน

    I have downloaded kubectl and minikube but not worked? how? i think some setting missed in this video.

    • @Venkat-os4zk
      @Venkat-os4zk 5 หลายเดือนก่อน

      Try If it is Windows, You need move those into specific folder and run commands from the folder location.

  • @tanmoysantra1112
    @tanmoysantra1112 ปีที่แล้ว +1

  • @Cloudnp9458
    @Cloudnp9458 10 หลายเดือนก่อน

    In real environment you will deploy deployment, daemonsets and statefulsets

  • @swamyreddy9314
    @swamyreddy9314 6 หลายเดือนก่อน

    Hi Abhishek , After running the kubectl get nodes
    NAME STATUS ROLES AGE VERSION
    minikube Ready control-plane 12m v1.30.0
    But master not showing . Please help me

    • @Pawan-1858
      @Pawan-1858 6 หลายเดือนก่อน

      control-plane is the master node ...you can see this in day 31 of kubernetes

  • @harendrakumar5137
    @harendrakumar5137 ปีที่แล้ว

    Can we do k8s practice on ubuntu??

  • @nithinprabhakar6583
    @nithinprabhakar6583 10 หลายเดือนก่อน +13

    Most of us don't have a Mac.

    • @samiullahk7223
      @samiullahk7223 4 หลายเดือนก่อน +2

      Works on normal windows also

  • @EluthuSolution
    @EluthuSolution 8 หลายเดือนก่อน +1

    I am running minikube start, on the ubuntu machine, but getting below error,
    Exiting due to RSRC_INSUFFICIENT_CORES: has less than 2 CPUs available, but Kubernetes requires at least 2 to be available
    How can I fix this ?

    • @Pawan-1858
      @Pawan-1858 6 หลายเดือนก่อน

      in ec2 insatnce you have to take t2.medium when you lanch the ec2....