How I got CKAD certified || My preparation journey 5 tips to excel CKAD in 2024

Поделиться
HTML-код
  • Опубликовано: 19 янв 2025

Комментарии • 39

  • @vidhitakher
    @vidhitakher  3 года назад

    Gratitude for all the viewers who liked this video and made it reach 1000+ views in just 2 months.😊🙏
    This motivates me to keep sharing my knowledge and help all. Thankyou twitter.com/VidhitaKher/status/1470046816863281156?t=sShu4FXpsam-sojH9YErOQ&s=19

  • @rajkishormahanada6223
    @rajkishormahanada6223 2 года назад

    Thank you, could you please please help how to practice in my laptop. Some more tips.

    • @vidhitakher
      @vidhitakher  2 года назад +1

      You can practice on your laptop using killer.sh scenarios and katacoda free scenarios for all Kubernetes exams www.katacoda.com/login

  • @pinakic2851
    @pinakic2851 3 года назад +1

    How complex / simple can a question be? Any example? And what is the proportion of complex:medium:simple questions.
    I have started with my preparations (no project experience) and at this point trying to solve mumshad's first lightning lab..
    Please let me know

    • @vidhitakher
      @vidhitakher  3 года назад +5

      There are nearly 60% of questions which can be solved easily with knowledge of a single concept of kubernetes and can be categorized within simple to medium range.
      Remaining 40% are a little complex questions which require you to understand and implement more than 2 or 3 concepts of Kubernetes altogether on a scenario similar to real time applications.
      Kodekloud lightning labs are a good place to start with for hands on👍

  • @sasivarathkannan7295
    @sasivarathkannan7295 3 года назад +1

    Congrats!! How much time u had been taken for the exam preparation???
    I know it depends... But I'm asking because I'm new to this Devops kubernetes...
    So that im asking time u taken for preparation

    • @vidhitakher
      @vidhitakher  3 года назад +1

      I took around 5 weeks for preparation by doing practice questions within allotted time limit so that I can attempt maximum questions within 2 hours. For someone who is new to Devops field, my take more time to learn all the concepts of Kubernetes.

  • @amey630
    @amey630 2 года назад +1

    Thank you for sharing this info.
    How much time required for exam ready preparation, if any professional person study for half n hour daily?

    • @vidhitakher
      @vidhitakher  2 года назад +1

      Thanks Amey for your comment. If we study daily for 1 hour we can complete the preparation in 3 weeks including giving practice tests and improving speed.😊 all the best for your preparation 🙌👍

    • @amey630
      @amey630 Год назад +1

      @@vidhitakher Thanks for info, I have cleared CKAD.

    • @vidhitakher
      @vidhitakher  Год назад +1

      @@amey630 congratulations,🙌 that’s a great achievement!! 👏👏

  • @ashishbadgujar5301
    @ashishbadgujar5301 2 года назад

    Congrats!!! Can you please guid me about finding best internship opportunities after CKAD..

    • @vidhitakher
      @vidhitakher  2 года назад +1

      You can find the same on linkedin by posting about your certification and connecting to various recruiters

  • @sivach9746
    @sivach9746 3 года назад +1

    Hi,
    Congrats!!!
    was your exam with New curriculam or old one...I prepared and about to take it , but curriculum been changed and none of the course included new topics. Do I need to worry for new topics or is it ok to take it..please suggest.

    • @vidhitakher
      @vidhitakher  3 года назад

      Thanks. 🙂
      I gave my exam with old curriculum in june month this year and recently the course is changed.
      Regarding the new topics added, they have been covered in Kodekloud udemy course as a separate section no 9 in their ckad course here : www.udemy.com/course/certified-kubernetes-application-developer/
      However the new changes added cover only about 40% of the total course and can be covered in a weeks time to prepare and sit for the exam. All the best 👍

    • @sivach9746
      @sivach9746 3 года назад +1

      @@vidhitakher
      Thank you Vidhita. I will the links and go forward..

    • @vidhitakher
      @vidhitakher  3 года назад

      @@sivach9746 Sure, let me know if you face any difficulty for the newer topics of ckad exam.

  • @vidhitakher
    @vidhitakher  3 года назад

    For those who like to read , please check out my blog post for preparation journey for CKAD exam on medium - vidhitakher.medium.com/how-i-got-ckad-certified-my-preparation-journey-cf54c01b841a

  • @dmintech8462
    @dmintech8462 3 года назад +1

    congrats!

  • @GauravGupta-zv8cm
    @GauravGupta-zv8cm 3 года назад +1

    Madam, I am preparing for CKA exam for that I am doing self study using online training videos.
    I am extremely confuse on how to creating yaml file in live exam.

    • @vidhitakher
      @vidhitakher  3 года назад

      You can create a basic yaml file from kubernetes imperative commands and redirect it to a yaml file using -o flag.
      Later once file is created, you can use any editor like vim or nano to edit/add the resources inside the yaml file.

    • @GauravGupta-zv8cm
      @GauravGupta-zv8cm 3 года назад

      @@vidhitakher Thanks a lot madam for the timely response.
      Could you further help me to clarify my doubts on the task to create a deployment file?
      First Method to create a Deployment:
      Command: kubectl create deployment --image=nginx nginx
      Output: deployment.apps/nginx created
      Second Method to create a Deployment:
      Command Run: kubectl create deployment --image=nginx nginx --dry-run=client -o yaml
      Output Display on the Screen:
      apiVersion: apps/v1
      kind: Deployment
      metadata:
      creationTimestamp: null
      labels:
      app: nginx
      name: nginx
      spec:
      replicas: 1
      selector:
      matchLabels:
      app: nginx
      strategy: {}
      template:
      metadata:
      creationTimestamp: null
      labels:
      app: nginx
      spec:
      containers:
      - image: nginx
      name: nginx
      resources: {}
      status: {}
      My query is that how can I edit or modify the above file using "vi editor", means what would be the file name of the above-created deployment file which I need to write next to the "vi" cmd
      i.e root@ip-172-31-15-232:~# vi filename
      Kindly help me with this.

    • @GauravGupta-zv8cm
      @GauravGupta-zv8cm 3 года назад

      if you don't mind......could you elaborate step by step.

    • @vidhitakher
      @vidhitakher  3 года назад

      @@GauravGupta-zv8cm the name of the file is "nginx" in above example you mentioned and the same can be found using the command "ls" which lists down all the file in the current folder.

    • @GauravGupta-zv8cm
      @GauravGupta-zv8cm 3 года назад +1

      Madam.....thanks a lot for your guidance

  • @aamarshi7264
    @aamarshi7264 3 года назад +2

    First Congratulations and thanks for being an inspiration.
    1.what would be approx total marks of all the qsns.
    2.does qsns with more marks are complex or easy but time taking - like you have to create multiple components to get the desired results.
    3. What if you are partially correct are you entitled for a mark or no marks.
    4.Since time is the primary factor would you recommend to start with qsns with more marks first?
    5.is the results declared immediately or delayed.

    • @vidhitakher
      @vidhitakher  3 года назад

      Thanks for your comment. I'm grateful for it😊
      Below are the answers to all your questions:
      1. Total marks are out of 100
      2. Question with higher weightage could be both easy or complex and that keeps on changing. Sometimes lengthy descriptions question may contain only 2 Marks. So please read the weightage of each question before attempting to time yourself accordingly
      3. Yes partially correct in case of creating multiple components is given due points.
      4. Time is very important factor in this exam so you have to be fast with easy questions so that u can spend more time towards the end for complex questions. Go for all the questions in the order and mark the question for review which requires more time and solve them towards the end once you feel you have solved enough to pass the min passing score.
      5. The results are declared immediately within next 24 hours and sent via mail.
      Hope it answers all your queries. All the best for your preparation as well as exam👍😊

  • @fahadbawazir1771
    @fahadbawazir1771 3 года назад +1

    Congrats

  • @srinivasanvaradarajan3705
    @srinivasanvaradarajan3705 3 года назад +1

    What is the pass mark for the exam?

  • @harinireddy8423
    @harinireddy8423 3 года назад +1

    How much money we need to pay to write the exam?

    • @vidhitakher
      @vidhitakher  3 года назад +1

      Exam fees is 300$ but last week December it was 65% on the same. Keep checking their website to see some discount offers

  • @vidhitakher
    @vidhitakher  3 года назад

    vidhitakher.medium.com/getting-started-with-helm-part-ii-35534a291baa

  • @vidhitakher
    @vidhitakher  3 года назад

    link.medium.com/3oDEOxkX8kb