<?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>Debug School: Nicholas</title>
    <description>The latest articles on Debug School by Nicholas (@mingzhuzou_696).</description>
    <link>https://www.debug.school/mingzhuzou_696</link>
    <image>
      <url>https://www.debug.school/images/CPDdQlGexClW9WOTxwLbEDeLKxuBxqind7bvkmstzXo/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly90aGVw/cmFjdGljYWxkZXYu/czMuYW1hem9uYXdz/LmNvbS9pLzk5bXZs/c2Z1NXRmajltN2t1/MjVkLnBuZw</url>
      <title>Debug School: Nicholas</title>
      <link>https://www.debug.school/mingzhuzou_696</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/mingzhuzou_696"/>
    <language>en</language>
    <item>
      <title>K8S</title>
      <dc:creator>Nicholas</dc:creator>
      <pubDate>Fri, 21 Jul 2023 13:27:34 +0000</pubDate>
      <link>https://www.debug.school/mingzhuzou_696/k8s-2o7e</link>
      <guid>https://www.debug.school/mingzhuzou_696/k8s-2o7e</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Kubernetes?&lt;/strong&gt;&lt;br&gt;
A CNCF product written by Google, to manage containers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why We need Kubernetes?&lt;/strong&gt;&lt;br&gt;
The increasing scalbility of containers could be hard to managed&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How Kubernetes works?&lt;/strong&gt;&lt;br&gt;
kubuctl as clients/users, manager nodes(APIservice, controller manager, scheduler,store) to manage the workers nodes via apiservice, worker nodes(kubelet, container/docker, kubeproxy) run pods&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Pods?&lt;/strong&gt;&lt;br&gt;
A basic managed unit of one service. Can run container(s) inside pods. The K8S will always runs the pods in desired states and numbers. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Playbook sample</title>
      <dc:creator>Nicholas</dc:creator>
      <pubDate>Thu, 20 Jul 2023 13:07:04 +0000</pubDate>
      <link>https://www.debug.school/mingzhuzou_696/playbook-sample-2iea</link>
      <guid>https://www.debug.school/mingzhuzou_696/playbook-sample-2iea</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- name: install git and wget
  hosts: web

  tasks:
  - name: Install git in ubuntu
    ansible.builtin.apt:
      name: "git"
      state: latest

  - name: Install wget in ubuntu
    ansible.builtin.apt:
      name: "wget"
      state: latest

  - name: run cmd
    ansible.builtin.cmd:ls

  - name: run bash shell
    ansible.builtin.shell: somescript.sh &amp;gt;&amp;gt; somelog.txt
    args:
      chdir: somedir/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>DevOps</title>
      <dc:creator>Nicholas</dc:creator>
      <pubDate>Thu, 13 Jul 2023 02:50:33 +0000</pubDate>
      <link>https://www.debug.school/mingzhuzou_696/devops-2184</link>
      <guid>https://www.debug.school/mingzhuzou_696/devops-2184</guid>
      <description>&lt;ol&gt;
&lt;li&gt;What is DevOps in simple terms?
DevOps means one team act as both developers and operators.
&lt;/li&gt;
&lt;li&gt;What exactly do DevOps do?
Same as what develpers and operators do. Coding, building, archieving, testing, deployment, monitor etc.&lt;/li&gt;
&lt;li&gt;What are the list of DevOps Tools?
A lot. Git,Github, Maven, Jfrog, jenkins, ansible, prometheus,grafana, docker, cloud, K8s, ELK, Terraform, Nexus,Junit, Jmeter...&lt;/li&gt;
&lt;li&gt;How DevOps and SRE are different?
DevOps is targeting to develop and deploy applications with more efficiency. SRE is more like archietecture and operator, although SRE also need coding. SRE's target is to maintain the stability of the application.&lt;/li&gt;
&lt;li&gt;What is DevSecOps?
DevOps+Security. Need to apply security compliance in every phase. &lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
  </channel>
</rss>
