<?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>DEV Community: Karim </title>
    <description>The latest articles on DEV Community by Karim  (@karim_miraz).</description>
    <link>https://dev.to/karim_miraz</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%2F430250%2F1b785911-997f-4574-a582-410509d6a5ed.jpg</url>
      <title>DEV Community: Karim </title>
      <link>https://dev.to/karim_miraz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/karim_miraz"/>
    <language>en</language>
    <item>
      <title>Basics of Kubernetes part 01</title>
      <dc:creator>Karim </dc:creator>
      <pubDate>Sun, 12 Jul 2020 19:55:36 +0000</pubDate>
      <link>https://dev.to/karim_miraz/basics-of-kubernetes-2aii</link>
      <guid>https://dev.to/karim_miraz/basics-of-kubernetes-2aii</guid>
      <description>&lt;p&gt;Kubernetes is an open-source platform that automates container deployment, expansion, and management. Some of the modifiers are “production-ready”, “de facto”, “helmsman”, “pilot”, “Planet Scale” and so on. Kubernetes are so long that there are many typos, so they are often abbreviated as k8s.&lt;/p&gt;

&lt;p&gt;Google, which creates billions of containers a week, started a project in 2014 based on borg, which was used as an internal distribution system.&lt;/p&gt;

&lt;p&gt;It is not just a container platform, but a microservice, cloud platform, and serves as a container for easily containing and managing containers. Various functions such as serverless, CI/CD, and machine learning work on the Kubernetes platform.&lt;/p&gt;

&lt;h6&gt;
  
  
  Cloud support
&lt;/h6&gt;

&lt;p&gt;Kubernetes has a function to automatically increase the server according to the load. It has AutoScaling and can be used as a load balancer by being assigned an IP. Kubernetes can easily extend cloud integration using the Cloud Controller. AWS, Google Cloud, Microsoft Azure, as well as dozens of cloud providers provide modules so administrators can use the same configuration file in different clouds.&lt;/p&gt;

&lt;h6&gt;
  
  
  Kubernetes has many objects
&lt;/h6&gt;

&lt;p&gt;** Kubernetes defines objects for managing states as objects. It provides scalability because it provides dozens of objects by default and is very easy to add new objects. The main objects are as follows.**&lt;/p&gt;

&lt;h6&gt;
  
  
  Pod
&lt;/h6&gt;

&lt;p&gt;Pod smallest unit that can be deployed in Kubernetes and has one or more containers, storage, and network properties.&lt;br&gt;
learn more  &lt;a href="https://kubernetes.io/docs/concepts/workloads/pods/pod/"&gt;Link&lt;/a&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  Service
&lt;/h6&gt;

&lt;p&gt;Network-related objects. Used to connect a pod to an external network and create an internal load balancer that looks at multiple pods. It also serves as a service discovery because it registers the service name as a domain in the internal DNS.&lt;br&gt;
learn more  &lt;a href="https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/"&gt;Link&lt;/a&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  ReplicaSet
&lt;/h6&gt;

&lt;p&gt;An object that duplicates and manages multiple pods (one or more). To create a pod and keep its count, you must use ReplicaSet.&lt;/p&gt;

&lt;p&gt;learn more  &lt;a href="https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/"&gt;Link&lt;/a&gt;&lt;/p&gt;

&lt;h6&gt;
  
  
  Volume
&lt;/h6&gt;

&lt;p&gt;An object related to the repository. You can use the host directory as it is, or you can create and use storage such as EBS dynamically. Virtually all popular storage methods are supported!&lt;/p&gt;

&lt;p&gt;learn more  &lt;a href="https://kubernetes.io/docs/concepts/storage/volumes/"&gt;Link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Continue .......&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>docker</category>
    </item>
  </channel>
</rss>
