<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Felipe Schossler</title>
    <description>The latest articles on Forem by Felipe Schossler (@felipeschossler).</description>
    <link>https://forem.com/felipeschossler</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F459786%2Fe0499243-0972-4162-9047-fd14fa962a7d.jpg</url>
      <title>Forem: Felipe Schossler</title>
      <link>https://forem.com/felipeschossler</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/felipeschossler"/>
    <language>en</language>
    <item>
      <title>How to prepare yourself to CKAD exam</title>
      <dc:creator>Felipe Schossler</dc:creator>
      <pubDate>Thu, 10 Sep 2020 02:51:23 +0000</pubDate>
      <link>https://forem.com/felipeschossler/how-to-prepare-yourself-to-ckad-exam-2f4i</link>
      <guid>https://forem.com/felipeschossler/how-to-prepare-yourself-to-ckad-exam-2f4i</guid>
      <description>&lt;p&gt;After reading a lot of tips of how to prepare yourself and take the CKAD exam, I want to give my tips (and a easy way in my opinion) of how to do this. I've taked the exam 08/31/2020.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First&lt;/strong&gt; I'll show you how to prepare yourself to take the exam, &lt;strong&gt;second&lt;/strong&gt; I'll give you environment tips like: aliases, vim configs, bash-completion and etc, &lt;strong&gt;third&lt;/strong&gt; I'll give you tips and advices about the exam.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to prepare yourself and training
&lt;/h2&gt;

&lt;p&gt;I'm going to separate this in two ways, it's working very well and it's more fast than the others ways.&lt;/p&gt;

&lt;h3&gt;
  
  
  Understand the concepts
&lt;/h3&gt;

&lt;p&gt;First thing that you must have in mind is that this exam have a curriculum, that you can found &lt;a href="https://github.com/cncf/curriculum"&gt;here&lt;/a&gt;. This is VERY important because now we know what we to need achieve in the exam.&lt;/p&gt;

&lt;p&gt;The more easy way to understand the concepts in a cheap and very good way is the CKAD course of Mumshad Mannambeth, that you can found &lt;a href="https://www.udemy.com/course/certified-kubernetes-application-developer/"&gt;here&lt;/a&gt;. This course aims prepare yourself for the CKAD exam of course, but the main things here that are the sections of the course are exactly the same sections that you have in CKAD curriculum and additionaly the course have some environments in KodeKloud platform that you can train the sections. So take this course and understand all the concepts (I expend 2/3 weeks here).&lt;/p&gt;

&lt;h3&gt;
  
  
  Training for the exam
&lt;/h3&gt;

&lt;p&gt;There are many ways to train to the exam that you can find on the internet, this brings to me a lot of confusion, because I don't know how to take for training. After try many ways, I found two very easy ways. REMEMBER: ONLY USE &lt;a href="https://kubernetes.io/docs/home/"&gt;KUBERNETES DOCS&lt;/a&gt; FOR SEARCHING AND RESEARCHING.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/dgkanatsios/CKAD-exercises"&gt;dgkanatsios GitHub Repo&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;Try to do this at least 3 times&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/bb-tutorials-and-thoughts/practice-enough-with-these-questions-for-the-ckad-exam-2f42d1228552"&gt;This article with many exercises&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;Try to do this at least 2 times&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The main thing here is create a muscle memory for the commands.&lt;/p&gt;

&lt;h2&gt;
  
  
  Environment tips
&lt;/h2&gt;

&lt;p&gt;For all your training and in the exam you can change things in your environment for helping you to edit files and use kubectl commands, some tips are this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enable auto-completion:

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;echo "source &amp;lt;(kubectl completion bash)" &amp;gt;&amp;gt; ~/.bashrc&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;echo "source &amp;lt;(kubectl completion bash | sed 's/kubectl/k/g' )" &amp;gt;&amp;gt; ~/.bashrc&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Use this alias: &lt;code&gt;echo "alias k=kubectl" &amp;gt;&amp;gt; ~/.bashrc&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;This enable &lt;code&gt;kubectl&lt;/code&gt; commands with the letter &lt;code&gt;k&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Enable line numbers in vi: &lt;code&gt;echo "set number" &amp;gt;&amp;gt; ~/.vimrc&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Study some vi shortcuts, the mose useful are this:

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;u&lt;/strong&gt; - undo&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CTRL + r&lt;/strong&gt; - redo&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;dd&lt;/strong&gt; - cut the line&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;gg + dG&lt;/strong&gt; - delete all caracters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;yy&lt;/strong&gt; - copy line&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;y&lt;/strong&gt; - copy (used in Visual mode)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;p&lt;/strong&gt; - paste&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;:line&lt;/strong&gt; - go to "line"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;/&lt;/strong&gt; - search a text&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  PS
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Remember after this relaunch your bash with &lt;code&gt;bash&lt;/code&gt; command&lt;/li&gt;
&lt;li&gt;Tmux is optional&lt;/li&gt;
&lt;li&gt;The auto-completion is REALLY USEFUL.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Exam tips
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;THE MAIN THING:&lt;/strong&gt; Never start a yml from scratch. Always use the flags: &lt;code&gt;--dry run -o yaml&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;The environment exam is really good, you have in your left the tasks the you need to do and already have the command to change to needed context of this task&lt;/li&gt;
&lt;li&gt;You have 2 hours to do 19 tasks, so you need to carry about your time. I recommend that you focus first on the tasks that you know how to do and it will be easy. You have a notepad for note all the tasks that you pass. So focus on the easy tasks and after this recover the others.&lt;/li&gt;
&lt;li&gt;Read carefully each question. I m-ade some mistakes on my exam just for don't read carefully, some questions are hard to understand and are big.&lt;/li&gt;
&lt;li&gt;You can copy from kubernetes docs&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;kubectl explain command&lt;/code&gt; if you forgot some field (it's really useful)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusions
&lt;/h2&gt;

&lt;p&gt;The CKAD exam is much more have the commands in your mind and time priorize.&lt;/p&gt;

&lt;p&gt;If you enjoy this post or you need tips about the exam, just contact me on my social medias. Thank you :)&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>ckad</category>
      <category>containers</category>
      <category>cncf</category>
    </item>
  </channel>
</rss>
