<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AWS Blog by Ashutosh</title>
	<atom:link href="https://awscloudengineer.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://awscloudengineer.com</link>
	<description>Learn, Try, Experiment and Repeat</description>
	<lastBuildDate>Sun, 04 Apr 2021 07:23:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://awscloudengineer.com/wp-content/uploads/2017/08/cropped-AWS_Simple_Icons_AWS_Cloud.svg_-32x32.png</url>
	<title>AWS Blog by Ashutosh</title>
	<link>https://awscloudengineer.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Create an EKS cluster (AWS) using Terraform and Ansible</title>
		<link>https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/</link>
					<comments>https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/#respond</comments>
		
		<dc:creator><![CDATA[Ashutosh]]></dc:creator>
		<pubDate>Sat, 03 Apr 2021 17:36:04 +0000</pubDate>
				<category><![CDATA[Amazon EKS]]></category>
		<category><![CDATA[Ansible]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[Terraform]]></category>
		<guid isPermaLink="false">https://awscloudengineer.com/?p=296</guid>

					<description><![CDATA[<p>Many people have written blogs on how to create an EKS cluster with terraform, but I have added Ansible to it. The reasons for that were: I love Ansible :). It gives structure to the execution steps. You can add pre-steps and post-steps to the deployment. About this blog If you are new to Infrastructure [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/">Create an EKS cluster (AWS) using Terraform and Ansible</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class='booster-block booster-read-block'>
                <div class="twp-read-time">
                	<i class="booster-icon twp-clock"></i> <span>Read Time:</span>3 Minute, 12 Second                </div>

            </div>
<p>Many people have written blogs on how to create an EKS cluster with <a href="https://www.terraform.io/" target="_blank" rel="noreferrer noopener">terraform</a>, but I have added <a href="https://www.ansible.com/" target="_blank" rel="noreferrer noopener">Ansible</a> to it. The reasons for that were:</p>



<ul><li>I love Ansible :).</li><li>It gives structure to the execution steps.</li><li>You can add pre-steps and post-steps to the deployment.</li></ul>



<h2>About this blog</h2>



<p>If you are new to Infrastructure as Code (IaC), this will be a step in the right direction.</p>



<p>This is an extension to terraform&#8217;s <a href="https://learn.hashicorp.com/tutorials/terraform/eks" target="_blank" rel="noreferrer noopener">blog</a>. You can find the architecture over there. </p>



<p>We are going to deploy 3 worker nodes in this demo. We will use Amazon EC2, Ansible, Terraform and Amazon EKS for this solution.</p>



<h2>Pre-requisites:</h2>



<ol><li>Must have basic knowledge about AWS, Terraform, Shell Scripting, and Ansible.</li><li>Read the terraform&#8217;s <a href="https://learn.hashicorp.com/tutorials/terraform/eks" target="_blank" rel="noreferrer noopener">blog</a>. <strong><span class="has-inline-color has-vivid-red-color">No need to execute anything from terraform&#8217;s blog.</span></strong></li><li>AWS region must be Ohio (us-east-2).</li><li>Already created IAM role with admin permissions.</li></ol>



<h2>Let&#8217;s create an EKS cluster:</h2>



<div class="wp-block-group"><div class="wp-block-group__inner-container">
<div class="wp-block-group"><div class="wp-block-group__inner-container">
<ol><li>Launch Instance with the following specs:<ul><li>Instance AMI &#8211; <strong>Amazon Linux 2 AMI (HVM), SSD Volume Type</strong>.</li><li>Instance Type &#8211; <strong>t3.micro</strong>.</li><li>IAM Role &#8211; <strong>Created in the pre-requisites</strong>.</li><li>Advanced Details &#8211; <strong>User data</strong> &#8211; add the below code:</li></ul></li></ol>



<pre class="wp-block-code"><code>#!/bin/bash
yum update
yum install git -y
amazon-linux-extras install ansible2 -y
ansible-galaxy collection install community.general
git clone https://github.com/ashutoshvct/aws-eks-terraform-ansible.git
sleep 10s
cd aws-eks-terraform-ansible &amp;&amp; nohup ansible-playbook install_eks.yaml -vv</code></pre>



<p>2. Security group should have SSH access to your IP and attach an existing key or create a new key for SSH.</p>



<p>3. Launch the Instance and after 2 mins SSH into the machine. Execute the below command to check the status of deployment: </p>



<pre class="wp-block-code"><code>sudo su
tail -f /var/log/cloud-init-output.log</code></pre>



<p>4. Go grab a coffee because it is going to take a while, around 30-40 mins. After which you should see the 3 worker nodes deployed.</p>
</div></div>
</div></div>



<h2>Unraveling the mystery</h2>



<ul><li>We create an EC2 Instance to execute our ansible playbook which contains the IaC.</li><li>In this instance, we install git, ansible2, and Ansible modules and plugins which are needed by terraform.</li><li>We clone the GitHub repo where the ansible-playbook is stored. Then, we execute the playbook in the background. Let&#8217;s go through the playbook:<ol><li>We are going to run the playbook on the instance we created. The playbook is stored at <code>/aws-eks-terraform-ansible</code>. If you want to make any edits in the playbook the filename is <a href="https://github.com/ashutoshvct/aws-eks-terraform-ansible/blob/main/install_eks.yaml" target="_blank" rel="noreferrer noopener">install_eks.yaml</a>.</li><li>The playbook will be run as a sudo user.</li><li>We have a variable for terraform version which is set to 0.14.6.</li><li>We update the yum repository.</li><li>Install the dependencies like wget, AWS CLI v2, Terraform 0.14.6, AWS IAM Authenticator, and Kubectl.</li><li>We then clone the repository to provision the EKS cluster.</li><li>Then, we use the ansible community module to ensure that the terraform deploys the EKS cluster.</li><li>In the end, we configure kubeconfig to the kubectl so that we can control the cluster via CLI.<br></li></ol></li></ul>



<h2>Cleanup</h2>



<ol><li>SSH into the EC2 instance that we created to deploy the EKS cluster.</li><li>Execute the below commands:<br><code>sudo su<br>cd /aws-eks-terraform-ansible<br>ansible-playbook destroy.yaml -vv</code></li><li>This will clean up all the terraform resources created. Once the process completes, terminate the EC2 Instance created for the EKS cluster setup.</li></ol>



<h2>Tips</h2>



<p>These are just guidelines for you to improve the solution.</p>



<ul><li>Store the state file of terraform on S3.</li><li>Improve the ansible-playbook to use native modules.</li><li>Convert this solution to a one-liner.</li><li>Change the yaml file according to your needs for example version of terraform, AWS CLI, or any other tool.</li><li>Write another ansible-playbook to deploy any app into the new EKS worker nodes.</li></ul>



<blockquote class="wp-block-quote"><p>Do read my other <a href="https://awscloudengineer.com/blogs/" target="_blank" rel="noreferrer noopener">blogs</a> and stay tuned for more blogs! Don&#8217;t forget to share and connect with me on <a href="https://www.linkedin.com/in/ashutosh1995/" target="_blank" rel="noreferrer noopener">LinkedIn</a> and <a href="https://twitter.com/iamashutosh95" target="_blank" rel="noreferrer noopener">Twitter</a>.</p></blockquote>
<p><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_google_gmail" href="https://www.addtoany.com/add_to/google_gmail?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Gmail" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&amp;linkname=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fawscloudengineer.com%2Fcreate-an-eks-cluster-aws-using-terraform-and-ansible%2F&#038;title=Create%20an%20EKS%20cluster%20%28AWS%29%20using%20Terraform%20and%20Ansible" data-a2a-url="https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/" data-a2a-title="Create an EKS cluster (AWS) using Terraform and Ansible"></a></p><p>The post <a rel="nofollow" href="https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/">Create an EKS cluster (AWS) using Terraform and Ansible</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://awscloudengineer.com/create-an-eks-cluster-aws-using-terraform-and-ansible/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Passing HashiCorp Certified Terraform Associate</title>
		<link>https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/</link>
					<comments>https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/#respond</comments>
		
		<dc:creator><![CDATA[Ashutosh]]></dc:creator>
		<pubDate>Sun, 14 Jun 2020 09:03:53 +0000</pubDate>
				<category><![CDATA[Terraform]]></category>
		<category><![CDATA[tf]]></category>
		<guid isPermaLink="false">https://awscloudengineer.com/?p=286</guid>

					<description><![CDATA[<p>Hello, my name is Ashutosh, you can connect with me on Linkedin or twitter. I&#8217;m HashiCorp Certified Terraform Associate. I also hold CKA (Certified Kubernetes Administrator), AWS Solutions Architect Associate, Alibaba Cloud Associate and Google Automate IT with Python. Why get Terraform Certified? Terraform is an awesome IAC (Infrastructure as Code) tool, which enables us [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/">Passing HashiCorp Certified Terraform Associate</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class='booster-block booster-read-block'>
                <div class="twp-read-time">
                	<i class="booster-icon twp-clock"></i> <span>Read Time:</span>2 Minute, 48 Second                </div>

            </div>
<p>Hello, my name is <a rel="noreferrer noopener" href="https://awscloudengineer.com/aws-blog-ashutosh/" target="_blank">Ashutosh</a>, you can connect with me on <a rel="noreferrer noopener" href="https://www.linkedin.com/in/ashutosh1995/" target="_blank">Linkedin</a> or <a rel="noreferrer noopener" href="https://twitter.com/iamashutosh95" target="_blank">twitter</a>. </p>



<p>I&#8217;m HashiCorp <a href="https://www.youracclaim.com/badges/236e040a-522e-400c-8dc6-8bbfd6f11443" target="_blank" rel="noreferrer noopener">Certified</a> Terraform Associate. I also hold <a rel="noreferrer noopener" href="https://awscloudengineer.com/clearing-cka-exam-with-100-result/" target="_blank">CKA</a> (Certified Kubernetes Administrator), AWS Solutions Architect Associate, Alibaba Cloud Associate and Google Automate IT with Python.</p>



<h2>Why get Terraform Certified?</h2>



<p>Terraform is an awesome IAC (Infrastructure as Code) tool, which enables us to deploy infrastructure on multi-cloud. If you work with multi-cloud or not it is good to have this tool skill set with you.</p>



<p>The cost of certification is very cheap which is $70.50 (excluding tax) as of today.</p>



<p>If you are new to terraform, this will be a good start it covers the basic concepts and also best practices of using terraform.</p>



<p>The preparation time for this certification is just 6 days or less.</p>



<p>Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently.</p>



<p>Terraform is used to create, manage, and update infrastructure resources such as physical machines, VMs, network switches, containers, and more. Almost any infrastructure type can be represented as a resource in Terraform.</p>



<h4>Prerequisites:</h4>



<ul><li>Basic terminal knowledge</li><li>Familiar with any Infrastructure/cloud <a rel="noreferrer noopener" href="https://www.terraform.io/docs/providers/index.html" target="_blank">provider</a>.</li><li>Basic scripting knowledge (Optional)</li></ul>



<h2>RoadMap:</h2>



<ol><li><a rel="noreferrer noopener" href="https://www.udemy.com/course/terraform-beginner-to-advanced/" target="_blank">Terraform hands-on course</a>.</li><li><a rel="noreferrer noopener" href="https://learn.hashicorp.com/terraform/certification/terraform-associate-review" target="_blank">Documentations</a>.</li><li><a href="#practice">Practice</a>.</li><li><a rel="noreferrer noopener" href="https://www.udemy.com/course/terraform-associate-practice-exam/" target="_blank">Exam Simulator</a>.</li></ol>



<h3>Step 1: The one with the master</h3>



<p>The <a rel="noreferrer noopener" href="https://www.udemy.com/course/terraform-beginner-to-advanced/" target="_blank">course</a> referred by me for preparing the exam was on Udemy by Zeal Vora.</p>



<p>This course will take you 3 days to complete if you give it 4 hours daily. The content is very good and it also has practice questions at the end.</p>



<h3>Step 2: The one where we read and read</h3>



<p>Reading the Documentation is very Important, I strongly suggest you to go through the <a rel="noreferrer noopener" href="https://learn.hashicorp.com/terraform/certification/terraform-associate-review" target="_blank">Exam review guide</a>.</p>



<p>The document has sections which are going to be asked in the exam. They point you to the topic page, where you can read about them.</p>



<p>There are so many topics to read. You might get overwhelmed. Don&#8217;t try to skip the documentation part, it will help you clear your concepts.</p>



<p>HashiCorp has really put effort in building the documentation for the community which makes it easier for us to use terraform.</p>



<h3 id="practice">Step 3: The one where you just practice</h3>



<p>So now you are almost prepared for the exam, but practice is very important. </p>



<p>Try to implement things that you already have in your cloud infrastructure. For example, you might have an EC2 instance running behind an ELB (Elastic Load Balancer) which is attached to ASG (Auto Scaling Group). Also create SG (Security Group) which has multiple rules.</p>



<p>Try to create a terraform template for this. I also suggest playing around updating and deleting resources. For example, after doing <code>terraform apply</code>, try updating the resource manually (change SG&#8217;s port, add or remove rules). Then perform <code>terraform apply</code> again to see what happens.</p>



<p>Another example would be to delete any resource manually and then with the help of this command <code>terraform destroy -target resource-type.custom-name</code>, check and see what happens.</p>



<h3>Step 4: The one where you give the mock exam</h3>



<p>Udemy has one more good <a rel="noreferrer noopener" href="https://www.udemy.com/course/terraform-associate-practice-exam/" target="_blank">course</a> which helps you simulate exam like environment. </p>



<p>Some <a href="https://learn.hashicorp.com/terraform/certification/terraform-associate-sample-questions" target="_blank" rel="noreferrer noopener">sample questions</a> provided by HashiCorp.</p>



<p>Try to get 90% in both the mock test, after you are done with this you are ready to <a rel="noreferrer noopener" href="https://ondemand.questionmark.com/home/405470/user" target="_blank">schedule your exam</a>.</p>



<p>Don&#8217;t be nervous you will surely pass the exam. Best of Luck!</p>



<p>You can connect with me on <a rel="noreferrer noopener" href="https://www.linkedin.com/in/ashutosh1995/" target="_blank">Linkedin</a> or <a rel="noreferrer noopener" href="https://twitter.com/iamashutosh95" target="_blank">twitter</a>. </p>
<p><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_google_gmail" href="https://www.addtoany.com/add_to/google_gmail?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Gmail" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&amp;linkname=Passing%20HashiCorp%20Certified%20Terraform%20Associate" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fawscloudengineer.com%2Fpassing-hashicorp-certified-terraform-associate%2F&#038;title=Passing%20HashiCorp%20Certified%20Terraform%20Associate" data-a2a-url="https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/" data-a2a-title="Passing HashiCorp Certified Terraform Associate"></a></p><p>The post <a rel="nofollow" href="https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/">Passing HashiCorp Certified Terraform Associate</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://awscloudengineer.com/passing-hashicorp-certified-terraform-associate/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Clearing CKA exam with 100% result</title>
		<link>https://awscloudengineer.com/clearing-cka-exam-with-100-result/</link>
					<comments>https://awscloudengineer.com/clearing-cka-exam-with-100-result/#comments</comments>
		
		<dc:creator><![CDATA[Ashutosh]]></dc:creator>
		<pubDate>Sat, 25 Jan 2020 06:32:53 +0000</pubDate>
				<category><![CDATA[Kubernetes]]></category>
		<category><![CDATA[cka]]></category>
		<category><![CDATA[kubernetes]]></category>
		<guid isPermaLink="false">http://awscloudengineer.com/?p=139</guid>

					<description><![CDATA[<p>CKA is not at all a hard exam. You will have enough time to solve it. About this CKA blog: So are you very new to Kubernetes? Have you failed your CKA exam in the first attempt and thinking about what you did wrong? Well, you are in the right place. This is your blog [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://awscloudengineer.com/clearing-cka-exam-with-100-result/">Clearing CKA exam with 100% result</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class='booster-block booster-read-block'>
                <div class="twp-read-time">
                	<i class="booster-icon twp-clock"></i> <span>Read Time:</span>4 Minute, 47 Second                </div>

            </div>
<h3>CKA is not at all a hard exam. You will have enough time to solve it.</h3>



<h4>About this CKA blog:</h4>



<p>So are you very new to Kubernetes? Have you failed your CKA exam in the first attempt and thinking about what you did wrong?</p>



<p>Well, you are in the right place. This is your blog to the glory. We will not only pass but clear our concepts too. Hello, my name is <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://awscloudengineer.com/aws-blog-ashutosh/" target="_blank">Ashutosh</a>, you can connect with me on <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://www.linkedin.com/in/ashutosh1995/" target="_blank">Linkedin</a> or <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://twitter.com/iamashutosh95" target="_blank">twitter</a>.</p>



<p><strong>PS</strong>: This is an approximately a two-week preparation course. However, the course is lengthy. </p>



<div class="wp-block-group"><div class="wp-block-group__inner-container">
<div class="wp-block-group"><div class="wp-block-group__inner-container">
<div class="wp-block-image"><figure class="alignleft"><figure><img loading="lazy" width="1024" height="964" src="https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-1024x964.png" alt="" class="wp-image-144" srcset="https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-1024x964.png 1024w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-300x283.png 300w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-768x723.png 768w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-720x678.png 720w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash-820x772.png 820w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-ash.png 1478w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure><figcaption>CKA Certificate</figcaption></figure></div>
</div></div>
</div></div>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3-1024x622.png" alt="" class="wp-image-176" width="575" height="349" srcset="https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3-1024x622.png 1024w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3-300x182.png 300w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3-768x467.png 768w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3-1536x934.png 1536w, https://awscloudengineer.com/wp-content/uploads/2020/01/cka-score-3.png 1576w" sizes="(max-width: 575px) 100vw, 575px" /><figcaption>CKA scorecard</figcaption></figure>



<h4>Prerequisites:</h4>



<ul><li>You should have basic knowledge of <a href="https://docs.docker.com/">Docker</a>.</li><li>You should know how to use the <a href="https://www.geeksforgeeks.org/grep-command-in-unixlinux/">grep</a>/<a href="https://www.geeksforgeeks.org/awk-command-unixlinux-examples/">awk</a> utility.</li><li>Basic Linux commands on Ubuntu 16.</li><li>A dedicated time of 4-5 hours daily and a full day on holidays for two weeks.</li><li>You should be aware of the <a href="https://www.w3schools.com/whatis/whatis_json.asp">Json</a>/<a href="https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html">Yaml</a> syntax.</li><li>Fluent with any text <a href="https://www.geeksforgeeks.org/vi-editor-unix/">editor</a>.</li><li>Fast typing. If you want to complete the exam in 2 hours.</li></ul>



<h3>Roadmap:</h3>



<ol class="useful-tips"><li><a href="https://www.udemy.com/course/learn-kubernetes/">Basic of Kubernetes (Optional).</a></li><li><a href="https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests/" target="_blank" rel="noreferrer noopener" aria-label="Kubernetes hands-on course. (opens in a new tab)">Kubernetes hands-on course.</a></li><li><a href="https://www.udemy.com/course/certified-kubernetes-administrator/">CKA practice exercise.</a></li><li><a rel="noreferrer noopener" aria-label="More practice (opens in a new tab)" href="https://github.com/ashutoshvct/k8s/tree/master/cka-exam" target="_blank">More practice</a> and <a href="https://github.com/ashutoshvct/cka-practice-environment">Exam simulator</a>.</li><li><a href="#useful-tips">Tips</a></li></ol>



<h3>Step 1: The one where it all Began </h3>



<p>If you are already aware of the very basics of Kubernetes, you can skip this step and move on. But ask yourself this if you know the exact functioning difference between scheduler and control-manager. Also, if you know the exact function of Kubelet.</p>



<p>If you are unsure about those questions above, <strong>start with the basic course on <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://www.udemy.com/course/learn-kubernetes/" target="_blank">Udemy</a>.</strong> This course will get you started and I recommend it for absolute beginners.</p>



<h3>Step 2: The one with the master</h3>



<p>Well, this is a long course so prepare yourself, give it enough time. Be mentally prepared. This course will give you hands-on practice enough to pass the exam, but not to excel it. </p>



<p>So, try to use commands only to create any objects in k8s. <strong>Once you have completed the <a href="https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">course</a></strong>, ask yourself this:</p>



<ul><li>Can you do any exercise?</li><li>Have you done the mock exam at least 2 times, each in 15-25 mins?</li><li>Do you know the k8s document very very well? </li><li>Do you know how to extract data using Jsonpath, custom-columns or a sort-by option? Can you mix these commands and get the expected output? Note: This course does not have enough questions around Jsonpath.</li></ul>



<h3>Step 3: The one where you practice</h3>



<p>Now, you have come a long way. You are just two steps in getting a full score.</p>



<p>Brace yourself because this is a <strong>practice test <a href="https://www.udemy.com/course/certified-kubernetes-administrator/">course</a></strong>, which will help you solve more questions. <strong>Remember you have to do only questions watching videos is not required.</strong> It will be just like repeating the course. </p>



<p>Please do all the exercises at the end of every section. Also, the Final Exam Preparation is also very good.</p>



<p>Ask yourself if you are done with course:</p>



<ul><li>Can you solve all the questions within 1-3 mins?</li><li>Are you very comfortable with using the kubectl utility?</li></ul>



<h3>Step 4: The one where you just practice more</h3>



<p>This is a <strong>Git <a href="https://github.com/ashutoshvct/k8s/tree/master/cka-exam" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">repository</a></strong> with more questions, some of the questions are unnecessary. I have forked the repository so that I can improve it after some time.</p>



<p>If you are done with the above repository, try this CKA <strong>exam <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://github.com/ashutoshvct/cka-practice-environment" target="_blank">simulator</a></strong> made from docker-compose, although the timer doesn&#8217;t work. Just concentrate on the questions, not the functionality.</p>



<p><strong>Note: Some questions related to audit are not part of the exam, you can skip them.</strong></p>



<div class="wp-block-group"><div class="wp-block-group__inner-container">
<h3 class="has-very-dark-gray-color has-text-color" id="useful-tips">Step 5: The End Game</h3>
</div></div>



<p>Now you are all set for the exam. But here are some tips that I will list down for you:</p>



<ul><li>Create a manifest for a pod with a command: <code><strong>kubectl run --generator=run-pod/v1 busybox --image=busybox --dry-run -o yaml --command "sleep 3000"</strong></code></li><li>Use <strong>-h</strong> option wherever possible. Example: create a container with an environment variable or use a service account with a pod.</li><li>Go through the cheat sheet, just read it once or twice maybe. There are very useful commands related to Jsonpath.</li><li>After completing a question, use the grep utility to find if the right pod has been created. For example: create a pod with Nginx image and name Nginx. So after you create it use this command: <strong><code>kubectl describe pods nginx | grep -ie image -ei name</code></strong>. Believe me, this command will save you a ton of time. </li><li>While creating a cluster with kubeadm, If you are unable to get the worker node ready. Then, you can create the token and cert hash manually.</li><li>Troubleshooting a cluster has more weight, so practice it quite enough. For example, the cluster is down and you can&#8217;t reach the API server. Do <strong><code>journalctl -u kubelet</code></strong> and then check for the issue so in some cases the staticPodPath is not present or incorrectly set.</li><li>The text editor that you use, see some shortcuts online and practice it.</li><li>Know your documentation very well. For example, taking backup of the etcd cluster should take you a maximum of 1-2 mins. Here is the document, I will open in the exam if I got a question-related to this.</li><li>It is better to give an exam where you don&#8217;t have less bandwidth or electricity issue (office maybe).</li><li>Switch the context at the start of every question no matter what.</li><li>Clear the cache/cookies of your browser. </li><li>There is no need to create an alias. Don&#8217;t waste your time.</li><li>Don&#8217;t be nervous if you have followed all the steps properly you will get 90+ score, even 100.</li><li>I will keep updating the blog with more tips.</li></ul>



<blockquote class="wp-block-quote"><p>If you liked this blog give it a shout-out on <a href="https://www.linkedin.com/in/ashutosh1995/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">linkedin</a> or <a href="https://twitter.com/iamashutosh95" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">twitter</a>. Comment and let me know if you have any doubts.</p></blockquote>



<p></p>
<p><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_google_gmail" href="https://www.addtoany.com/add_to/google_gmail?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Gmail" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&amp;linkname=Clearing%20CKA%20exam%20with%20100%25%20result" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fawscloudengineer.com%2Fclearing-cka-exam-with-100-result%2F&#038;title=Clearing%20CKA%20exam%20with%20100%25%20result" data-a2a-url="https://awscloudengineer.com/clearing-cka-exam-with-100-result/" data-a2a-title="Clearing CKA exam with 100% result"></a></p><p>The post <a rel="nofollow" href="https://awscloudengineer.com/clearing-cka-exam-with-100-result/">Clearing CKA exam with 100% result</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://awscloudengineer.com/clearing-cka-exam-with-100-result/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>Custom CloudWatch Metrics (CentOS 7)</title>
		<link>https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/</link>
					<comments>https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[Ashutosh]]></dc:creator>
		<pubDate>Sat, 05 Aug 2017 15:02:15 +0000</pubDate>
				<category><![CDATA[AWS]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CloudWatch]]></category>
		<category><![CDATA[custom-metrics]]></category>
		<category><![CDATA[monitoring]]></category>
		<guid isPermaLink="false">http://awscloudengineer.com/?p=68</guid>

					<description><![CDATA[<p>Today, we will learn how to create custom CloudWatch metrics like RAM Usage and Disk Usage in centos 7? What made me do this and why it is important? Let&#8217;s see monitoring is a very important part of maintaining our servers. Also, AWS didn&#8217;t support these monitoring scripts for Centos. This made it difficult for a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/">Custom CloudWatch Metrics (CentOS 7)</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class='booster-block booster-read-block'>
<div class="twp-read-time">
                	<i class="booster-icon twp-clock"></i> <span>Read Time:</span>2 Minute, 5 Second                </div>
</p></div>
<p>Today, we will learn how to create custom CloudWatch metrics like RAM Usage and Disk Usage in centos 7?</p>
<p>What made me do this and why it is important?</p>
<p>Let&#8217;s see monitoring is a very important part of maintaining our servers. Also, AWS didn&#8217;t support these monitoring scripts for Centos. This made it difficult for a system administrator to monitor the environment.</p>
<h1>Monitor RAM and Disk Usage in CentOS 7</h1>
<p>A little bit about a script:</p>
<p>Script Name: <strong>mon-put-instance-data.pl</strong></p>
<p>Purpose: This script is written in pearl and is used to collect metrics of swap, disk, and memory. In this blog, we will create custom CloudWatch metrics for RAM and disk.</p>
<p>Well, you are at the right place, because I&#8217;m going to show you how it&#8217;s done.</p>
<h2>Prerequisite:</h2>
<ul>
<li>Centos 7</li>
<li>AWS IAM role with EC2 and CloudWatch access. You need to attach the role to your centos instance.</li>
</ul>
<h2>Creating custom CloudWatch Metrics (Centos 7)</h2>
<ol>
<li style="list-style-type: none;">
<ol>
<li>Install the following packages:
<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-linenumbers="false">sudo yum install perl-Switch perl-DateTime perl-Sys-Syslogperl-LWP-Protocol-https perl-Digest-SHA perl-LWP-Protocol-https -y</pre>
</li>
<li>We also need zip and unzip tools:
<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-linenumbers="false">sudo yum install zip unzip -y</pre>
</li>
<li>Download the monitoring scripts:
<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-linenumbers="false">curl http://aws-cloudwatch.s3.amazonaws.com/downloads/CloudWatchMonitoringScripts-1.2.1.zip -O</pre>
</li>
<li>Run the below commands to install the script:
<pre class="EnlighterJSRAW" data-enlighter-language="shell">unzip CloudWatchMonitoringScripts-1.2.1.zip
rm CloudWatchMonitoringScripts-1.2.1.zip
cd aws-scripts-mon</pre>
</li>
<li>To verify the scripts are working enter this command:
<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-linenumbers="false">./mon-put-instance-data.pl --mem-util --verify --verbose</pre>
</li>
<li>Now, let make this command automated by running it in crontab:
<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-linenumbers="false">crontab -e</pre>
</li>
<li>Enter these cronjob commands to send RAM and Disk Usage to AWS CloudWatch:<br />
<strong>Note:</strong> Instead of &#8220;/home/centos&#8221; enter your directory where you have installed the script. In the disk-path enter the mounted path of the volume whose metrics you want. In this case, I want metrics of the root EBS volume.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="shell">*/5 * * * * /home/centos/aws-scripts-mon/mon-put-instance-data.pl --mem-used --mem-util --mem-avail
*/5 * * * * /home/centos/aws-scripts-mon/mon-put-instance-data.pl --disk-path=/ --disk-space-util --disk-space-avail --disk-space-used
</pre>
</li>
<li>Go to CloudWatch console and Create a new dashboard.</li>
<li>Click on Add widget option and then select Linux system Metrics.<br />
<h4>Here you have it the screenshot of custom CloudWatch metrics:</h4>
<p><figure id="attachment_89" aria-describedby="caption-attachment-89" style="width: 850px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-89" src="https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics.png" alt="Custom CloudWatch Metrics" width="850" height="645" srcset="https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics.png 850w, https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics-300x228.png 300w, https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics-768x583.png 768w, https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics-720x546.png 720w, https://awscloudengineer.com/wp-content/uploads/2017/08/awscloudengineer_cloudwatchmetrics-820x622.png 820w" sizes="(max-width: 850px) 100vw, 850px" /><figcaption id="caption-attachment-89" class="wp-caption-text">Custom CloudWatch Metrics</figcaption></figure></p>
<p>Feel free to comment and <a href="http://awscloudengineer.com/contact-me/">contact me</a> for more blogs.</p>
<p>Reference: <a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/mon-scripts.html">AWS Monitoring</a>, <a href="https://aws.amazon.com/blogs/aws/new-amazon-cloudwatch-monitoring-scripts/">Blog by AWS</a></li>
</ol>
</li>
</ol>
<p><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_google_gmail" href="https://www.addtoany.com/add_to/google_gmail?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Gmail" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&amp;linkname=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fawscloudengineer.com%2Fcreate-custom-cloudwatch-metrics-centos-7%2F&#038;title=Custom%20CloudWatch%20Metrics%20%28CentOS%207%29" data-a2a-url="https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/" data-a2a-title="Custom CloudWatch Metrics (CentOS 7)"></a></p><p>The post <a rel="nofollow" href="https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/">Custom CloudWatch Metrics (CentOS 7)</a> appeared first on <a rel="nofollow" href="https://awscloudengineer.com">AWS Blog by Ashutosh</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://awscloudengineer.com/create-custom-cloudwatch-metrics-centos-7/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			</item>
	</channel>
</rss>
