<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>WaveYo Blog</title>
  <icon>http://blog.waveyo.cn/icon.png</icon>
  
  <link href="http://blog.waveyo.cn/atom.xml" rel="self"/>
  
  <link href="http://blog.waveyo.cn/"/>
  <updated>2026-03-02T21:32:56.606Z</updated>
  <id>http://blog.waveyo.cn/</id>
  
  <author>
    <name>Waves_Man</name>
    
  </author>
  
  <generator uri="https://hexo.io/">Hexo</generator>
  
  <entry>
    <title>🎉 新站上线喵～</title>
    <link href="http://blog.waveyo.cn/2026/03/03/000.New_Blog_site/"/>
    <id>http://blog.waveyo.cn/2026/03/03/000.New_Blog_site/</id>
    <published>2026-03-03T04:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
      
      
        
        
    <summary type="html">&lt;h1 id=&quot;🌸-新站上线啦！喵～-✨&quot;&gt;&lt;a href=&quot;#🌸-新站上线啦！喵～-✨&quot; class=&quot;headerlink&quot; title=&quot;🌸 新站上线啦！喵～ ✨&quot;&gt;&lt;/a&gt;🌸 新站上线啦！喵～ ✨&lt;/h1&gt;&lt;div</summary>
        
      
    
    
    
    <category term="日常" scheme="http://blog.waveyo.cn/categories/%E6%97%A5%E5%B8%B8/"/>
    
    
    <category term="公告" scheme="http://blog.waveyo.cn/tags/%E5%85%AC%E5%91%8A/"/>
    
    <category term="新站" scheme="http://blog.waveyo.cn/tags/%E6%96%B0%E7%AB%99/"/>
    
  </entry>
  
  <entry>
    <title>基于Golang构建YoOSF-API高并发架构的最佳实践</title>
    <link href="http://blog.waveyo.cn/2025/12/29/018.HCI_in_Golang/"/>
    <id>http://blog.waveyo.cn/2025/12/29/018.HCI_in_Golang/</id>
    <published>2025-12-29T03:36:36.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;在海量文件存储与访问场景下，高并发、低延迟是API服务的核心诉求。YoOSF-API作为面向S3兼容存储的文件管理接口服务，基于Golang生态实现了41.7k QPS的高并发支撑能力，平均延迟控制在650ms左右，相比单一缓存方案性能提升49%。本文将结合YoOSF-API的实际落地经验，拆解Golang下高并发架构的设计思路与核心实现。&lt;/p&gt;
&lt;h2 id=&quot;一、架构设计核心原则&quot;&gt;&lt;a href=&quot;#一、架构设计核心原则&quot; class=&quot;headerlink&quot; title=&quot;一、架构设计核心原则&quot;&gt;&lt;/a&gt;一、架构设计核心原则&lt;/h2&gt;&lt;p&gt;YoOSF-API的高并发架构围绕「减少阻塞、多级缓存、资源可控」三大原则构建，整体架构如下（Mermaid简化说明：客户端→Fiber接入层→业务服务层→多级缓存→S3存储，辅以异步协程池、分布式锁等基础设施）：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;接入层：基于Fiber（fasthttp）实现高性能HTTP处理，规避Go标准库net&amp;#x2F;http的性能瓶颈；&lt;/li&gt;
&lt;li&gt;核心层：业务逻辑与缓存策略解耦，通过多级缓存减少存储层访问压力；&lt;/li&gt;
&lt;li&gt;执行层：异步任务+协程池控制并发度，避免无限制协程导致的资源耗尽；&lt;/li&gt;
&lt;li&gt;保障层：分布式锁+熔断降级，防止缓存击穿与服务雪崩。&lt;/li&gt;
&lt;/ul&gt;</summary>
    
    
    
    
  </entry>
  
  <entry>
    <title>JavaScript中实现随机图片</title>
    <link href="http://blog.waveyo.cn/2025/12/29/017-Random-background-image/"/>
    <id>http://blog.waveyo.cn/2025/12/29/017-Random-background-image/</id>
    <published>2025-12-29T03:15:06.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;在现代网站中使用单一的背景图片很容易让用户感到审美疲劳。为了让您的博客或者主页更加生动多变，我们可以利用JavaScript编写一个简单却有效的函数。当访客每次访问或刷新页面时，网站将随机载入一张背景图片。&lt;/p&gt;</summary>
    
    
    
    <category term="开发" scheme="http://blog.waveyo.cn/categories/%E5%BC%80%E5%8F%91/"/>
    
    
    <category term="前端" scheme="http://blog.waveyo.cn/tags/%E5%89%8D%E7%AB%AF/"/>
    
    <category term="JavaScript" scheme="http://blog.waveyo.cn/tags/JavaScript/"/>
    
  </entry>
  
  <entry>
    <title>Cloudflare为了防御 React2Shell (CVE-2025-55182) 而引发的全球中断</title>
    <link href="http://blog.waveyo.cn/2025/12/06/016-Cloudflare-Down-25-12-05/"/>
    <id>http://blog.waveyo.cn/2025/12/06/016-Cloudflare-Down-25-12-05/</id>
    <published>2025-12-06T12:15:17.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;距离上一篇写 &lt;a href=&quot;https://blog.waveyo.cn/2025/11/29/013.Cloudflare-Down-25-11-18/&quot;&gt;Cloudflare全球互联网瘫痪：安全升级的好心办坏事&lt;/a&gt; 还没满一个月，Cloudflare 的 Status Page 在 12 月 5 日又红了一片。&lt;/p&gt;
&lt;p&gt;上次是因为代码发布的流程问题，而这次的情况稍微复杂点——简单来说，是为了修补一个紧急漏洞，结果把网给修断了。SRE 最不想遇到的经典电车难题：是要安全性，还是要可用性？&lt;/p&gt;
&lt;p&gt;结合官方刚出的 Post-mortem 和最新的 CVE 信息，简单记录一下这次持续了 25 分钟的全球中断。&lt;/p&gt;</summary>
    
    
    
    <category term="网络" scheme="http://blog.waveyo.cn/categories/%E7%BD%91%E7%BB%9C/"/>
    
    <category term="事故复盘" scheme="http://blog.waveyo.cn/categories/%E7%BD%91%E7%BB%9C/%E4%BA%8B%E6%95%85%E5%A4%8D%E7%9B%98/"/>
    
    
    <category term="Cloudflare" scheme="http://blog.waveyo.cn/tags/Cloudflare/"/>
    
    <category term="Outage" scheme="http://blog.waveyo.cn/tags/Outage/"/>
    
    <category term="React2Shell" scheme="http://blog.waveyo.cn/tags/React2Shell/"/>
    
    <category term="CVE-2025-55182" scheme="http://blog.waveyo.cn/tags/CVE-2025-55182/"/>
    
    <category term="WAF" scheme="http://blog.waveyo.cn/tags/WAF/"/>
    
  </entry>
  
  <entry>
    <title>让每个人都能够轻易部署插件市场镜像</title>
    <link href="http://blog.waveyo.cn/2025/12/03/015.Deploy_koishi_images_easily/"/>
    <id>http://blog.waveyo.cn/2025/12/03/015.Deploy_koishi_images_easily/</id>
    <published>2025-12-03T12:16:16.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;h2 id=&quot;How&quot;&gt;&lt;a href=&quot;#How&quot; class=&quot;headerlink&quot; title=&quot;How&quot;&gt;&lt;/a&gt;How&lt;/h2&gt;&lt;p&gt;基于Hoshino-Yumetsuki的&lt;a href=&quot;https://github.com/Hoshino-Yumetsuki/koishi-registry&quot;&gt;repo&lt;/a&gt; 做了改进，实现纯GitHub Action拉取npmjs仓库里的全部koishi-plugins&lt;/p&gt;
&lt;p&gt;拉取的完整json与预制的index.html商店预览将会被Action Push到&lt;code&gt;pages&lt;/code&gt;分支&lt;/p&gt;
&lt;p&gt;只需要通过各类静态资源Pages部署服务选择到你的fork仓库的 &lt;code&gt;pages&lt;/code&gt; 分支再添加一个域名就可以实现定时拉取的&lt;strong&gt;Koishi-Registry&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;比如 腾讯云EdgeOne Pages国内版，如此就简单实现了商店镜像，全程只需要点点点&lt;/p&gt;</summary>
    
    
    
    
    <category term="开源" scheme="http://blog.waveyo.cn/tags/%E5%BC%80%E6%BA%90/"/>
    
    <category term="API" scheme="http://blog.waveyo.cn/tags/API/"/>
    
    <category term="koishi" scheme="http://blog.waveyo.cn/tags/koishi/"/>
    
  </entry>
  
  <entry>
    <title>Cloudflare全球互联网瘫痪：安全升级的好心办坏事</title>
    <link href="http://blog.waveyo.cn/2025/11/29/013.Cloudflare-Down-25-11-18/"/>
    <id>http://blog.waveyo.cn/2025/11/29/013.Cloudflare-Down-25-11-18/</id>
    <published>2025-11-29T02:36:16.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;h3 id=&quot;事件背景&quot;&gt;&lt;a href=&quot;#事件背景&quot; class=&quot;headerlink&quot; title=&quot;事件背景&quot;&gt;&lt;/a&gt;事件背景&lt;/h3&gt;&lt;p&gt;2025年11月18日，全球最大的互联网基础设施服务商之一 Cloudflare 遭遇一次严重的中断事件。从各类商务网站，到社交媒体，再到在线支付，全球超半数的依赖 Cloudflare 提供的服务的网站和应用都受到了影响。用户在访问这些网站时普遍会收到 HTTP 5xx 错误，如 502 Bad Gateway。&lt;/p&gt;
&lt;p&gt;在随后的 Cloudflare 官方调查中证明了这不是一次外部网络攻击（DDoS），而是由于内部软件的配置错误引发的连锁崩溃。&lt;/p&gt;</summary>
    
    
    
    <category term="网络" scheme="http://blog.waveyo.cn/categories/%E7%BD%91%E7%BB%9C/"/>
    
    <category term="事故复盘" scheme="http://blog.waveyo.cn/categories/%E7%BD%91%E7%BB%9C/%E4%BA%8B%E6%95%85%E5%A4%8D%E7%9B%98/"/>
    
    
    <category term="Cloudflare" scheme="http://blog.waveyo.cn/tags/Cloudflare/"/>
    
    <category term="宕机" scheme="http://blog.waveyo.cn/tags/%E5%AE%95%E6%9C%BA/"/>
    
    <category term="Rust" scheme="http://blog.waveyo.cn/tags/Rust/"/>
    
    <category term="数据库" scheme="http://blog.waveyo.cn/tags/%E6%95%B0%E6%8D%AE%E5%BA%93/"/>
    
    <category term="502 Bad Gateway" scheme="http://blog.waveyo.cn/tags/502-Bad-Gateway/"/>
    
  </entry>
  
  <entry>
    <title>WaveYo-API：重新定义插件化后端服务的开源新范式</title>
    <link href="http://blog.waveyo.cn/2025/08/20/012.WaveYo-API-25-08-20/"/>
    <id>http://blog.waveyo.cn/2025/08/20/012.WaveYo-API-25-08-20/</id>
    <published>2025-08-20T11:59:00.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;h3 id=&quot;一、宏图伟志：构建下一代模块化服务架构&quot;&gt;&lt;a href=&quot;#一、宏图伟志：构建下一代模块化服务架构&quot; class=&quot;headerlink&quot; title=&quot;一、宏图伟志：构建下一代模块化服务架构&quot;&gt;&lt;/a&gt;&lt;strong&gt;一、宏图伟志：构建下一代模块化服务架构&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;在微服务与云原生技术蓬勃发展的今天，传统单体架构的臃肿性已成为制约开发效率的核心痛点。WaveYo-API以 &lt;strong&gt;“模块即插件，开箱即服务”&lt;/strong&gt; 为核心理念，致力于打造一个 &lt;strong&gt;标准化、高内聚、低耦合&lt;/strong&gt; 的开源后端架构。其长远目标直指三大方向：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;建立插件开发黄金标准&lt;/strong&gt;：通过严格的命名规范、依赖管理机制和日志体系，终结开源社区中插件质量参差不齐的乱象&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;实现真正的功能热插拔&lt;/strong&gt;：允许开发者在运行时动态加载&amp;#x2F;卸载功能模块，无需重启即可扩展系统能力&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;构建Git托管插件市场&lt;/strong&gt;： Git优先战略，充分利用现有代码托管平台的成熟生态&lt;/li&gt;
&lt;/ol&gt;</summary>
    
    
    
    <category term="开源" scheme="http://blog.waveyo.cn/categories/%E5%BC%80%E6%BA%90/"/>
    
    <category term="API" scheme="http://blog.waveyo.cn/categories/%E5%BC%80%E6%BA%90/API/"/>
    
    
    <category term="Python" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck/"/>
    
    <category term="开源" scheme="http://blog.waveyo.cn/tags/%E5%BC%80%E6%BA%90/"/>
    
    <category term="FastAPI" scheme="http://blog.waveyo.cn/tags/FastAPI/"/>
    
    <category term="后端" scheme="http://blog.waveyo.cn/tags/%E5%90%8E%E7%AB%AF/"/>
    
  </entry>
  
  <entry>
    <title>使用OpenWrt屏蔽Adobe正版验证</title>
    <link href="http://blog.waveyo.cn/2025/06/09/011.Use-OpenWrt-block-adobe/"/>
    <id>http://blog.waveyo.cn/2025/06/09/011.Use-OpenWrt-block-adobe/</id>
    <published>2025-06-09T02:50:20.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h2 id=&quot;🎉-新站上线喵～&quot;&gt;&lt;a href=&quot;#🎉-新站上线喵～&quot; class=&quot;headerlink&quot; title=&quot;🎉 新站上线喵～&quot;&gt;&lt;/a&gt;&lt;a href=&quot;/2026/03/03/000.New_Blog_site/&quot;&gt;🎉 新站上线喵～&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;近一年Adobe正版验证策略逐步收紧，现如今已经在多个版本中使用软件内置的网络连接策略启用了正版验证策略。&lt;/p&gt;
&lt;p&gt;如果使用了非正版解决方案，那么Adobe产品将无法使用。Adobe将会通过“红色弹窗”阻断你的继续使用，并要求你前往官网购买正版。&lt;/p&gt;
&lt;p&gt;本文为希望在购买正版前临时使用Adobe产品的用户提供一个临时过渡解决翻案&lt;/p&gt;</summary>
    
    
    
    <category term="教程" scheme="http://blog.waveyo.cn/categories/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    
    <category term="Adobe" scheme="http://blog.waveyo.cn/tags/Adobe/"/>
    
    <category term="OpenWrt" scheme="http://blog.waveyo.cn/tags/OpenWrt/"/>
    
    <category term="网络" scheme="http://blog.waveyo.cn/tags/%E7%BD%91%E7%BB%9C/"/>
    
  </entry>
  
  <entry>
    <title>长沙南方职业学院 校园网 分析工程-6月5日版</title>
    <link href="http://blog.waveyo.cn/2025/06/05/010.NFZY_Campus_Network_analysis/docs/monitoring_reports/2025-06-05_083518/"/>
    <id>http://blog.waveyo.cn/2025/06/05/010.NFZY_Campus_Network_analysis/docs/monitoring_reports/2025-06-05_083518/</id>
    <published>2025-06-05T02:38:56.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;校园网认证系统逆向分析文档&quot;&gt;&lt;a href=&quot;#校园网认证系统逆向分析文档&quot; class=&quot;headerlink&quot; title=&quot;校园网认证系统逆向分析文档&quot;&gt;&lt;/a&gt;&lt;strong&gt;校园网认证系统逆向分析文档&lt;/strong&gt;&lt;/h1&gt;&lt;p&gt;&lt;strong&gt;版本&lt;/strong&gt;：1.0&lt;br&gt;&lt;strong&gt;测试时间&lt;/strong&gt;：2025-06-05&lt;br&gt;&lt;strong&gt;测试环境&lt;/strong&gt;：Windows 11 + curl 8.4.0&lt;/p&gt;</summary>
    
    
    
    <category term="010.NFZY_Campus_Network_analysis" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/"/>
    
    <category term="docs" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/docs/"/>
    
    <category term="monitoring_reports" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/docs/monitoring-reports/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="网络" scheme="http://blog.waveyo.cn/tags/%E7%BD%91%E7%BB%9C/"/>
    
  </entry>
  
  <entry>
    <title>长沙南方职业学院 校园网 分析工程</title>
    <link href="http://blog.waveyo.cn/2025/06/02/010.NFZY_Campus_Network_analysis/010.NFZY_Campus_Network_analysis/"/>
    <id>http://blog.waveyo.cn/2025/06/02/010.NFZY_Campus_Network_analysis/010.NFZY_Campus_Network_analysis/</id>
    <published>2025-06-02T10:27:52.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;长沙南方职业学院-校园网-分析工程&quot;&gt;&lt;a href=&quot;#长沙南方职业学院-校园网-分析工程&quot; class=&quot;headerlink&quot; title=&quot;长沙南方职业学院 校园网 分析工程&quot;&gt;&lt;/a&gt;长沙南方职业学院 校园网 分析工程&lt;/h1&gt;&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;写在前面&lt;/strong&gt;&lt;br&gt;本次分析校园网分析工程，仅用于学习交流，未得到学校有关部门与相关人员授权，禁止用于商业用途。若校方联系要求，将会立即删除清档。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr&gt;
&lt;h4 id=&quot;目录&quot;&gt;&lt;a href=&quot;#目录&quot; class=&quot;headerlink&quot; title=&quot;目录&quot;&gt;&lt;/a&gt;目录&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;#%E6%A0%A1%E5%9B%AD%E7%BD%91api%E6%8E%A5%E5%8F%A3%E5%88%86%E6%9E%90%E6%8A%A5%E5%91%8A&quot;&gt;分析报告&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#%E5%9F%BA%E4%BA%8E%E6%A0%A1%E5%9B%AD%E7%BD%91api%E6%8E%A5%E5%8F%A3%E5%88%86%E6%9E%90%E6%9E%84%E5%BB%BA%E7%9A%84%E6%A0%A1%E5%9B%AD%E7%BD%91%E8%87%AA%E5%8A%A8%E5%8C%96%E7%99%BB%E9%99%86%E8%84%9A%E6%9C%AC&quot;&gt;自动化登陆脚本&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;../docs/monitoring_reports/2025-06-02_142740&quot;&gt;20250602142740分析报告&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;../docs/monitoring_reports/2025-06-05_083518&quot;&gt;20250605083518分析报告&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;</summary>
    
    
    
    <category term="010.NFZY_Campus_Network_analysis" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="网络" scheme="http://blog.waveyo.cn/tags/%E7%BD%91%E7%BB%9C/"/>
    
  </entry>
  
  <entry>
    <title>校园网认证系统逆向分析文档-6月2日版</title>
    <link href="http://blog.waveyo.cn/2025/06/02/010.NFZY_Campus_Network_analysis/docs/monitoring_reports/2025-06-02_142740/"/>
    <id>http://blog.waveyo.cn/2025/06/02/010.NFZY_Campus_Network_analysis/docs/monitoring_reports/2025-06-02_142740/</id>
    <published>2025-06-02T10:27:52.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;校园网认证系统逆向分析文档&quot;&gt;&lt;a href=&quot;#校园网认证系统逆向分析文档&quot; class=&quot;headerlink&quot; title=&quot;校园网认证系统逆向分析文档&quot;&gt;&lt;/a&gt;&lt;strong&gt;校园网认证系统逆向分析文档&lt;/strong&gt;&lt;/h1&gt;&lt;p&gt;&lt;strong&gt;版本&lt;/strong&gt;：1.0&lt;br&gt;&lt;strong&gt;测试时间&lt;/strong&gt;：2025-06-02&lt;br&gt;&lt;strong&gt;测试环境&lt;/strong&gt;：Windows 11 + curl 8.4.0&lt;/p&gt;</summary>
    
    
    
    <category term="010.NFZY_Campus_Network_analysis" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/"/>
    
    <category term="docs" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/docs/"/>
    
    <category term="monitoring_reports" scheme="http://blog.waveyo.cn/categories/010-NFZY-Campus-Network-analysis/docs/monitoring-reports/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="网络" scheme="http://blog.waveyo.cn/tags/%E7%BD%91%E7%BB%9C/"/>
    
  </entry>
  
  <entry>
    <title>01-1.Kubernetes 核心概念</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/1.Basics/1-1.K8s_Core_Concepts/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/1.Basics/1-1.K8s_Core_Concepts/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;Kubernetes核心概念解析&quot;&gt;&lt;a href=&quot;#Kubernetes核心概念解析&quot; class=&quot;headerlink&quot; title=&quot;Kubernetes核心概念解析&quot;&gt;&lt;/a&gt;Kubernetes核心概念解析&lt;/h1&gt;&lt;h2 id=&quot;知识图谱&quot;&gt;&lt;a href=&quot;#知识图谱&quot; class=&quot;headerlink&quot; title=&quot;知识图谱&quot;&gt;&lt;/a&gt;知识图谱&lt;/h2&gt;&lt;pre&gt;&lt;code class=&quot;mermaid&quot;&gt;graph TD
  A[Pod] --&amp;gt; B(生命周期管理)
  A --&amp;gt; C(网络策略)
  B --&amp;gt; D&amp;#123;调试方法&amp;#125;
  D --&amp;gt; E[kubectl describe]
  D --&amp;gt; F[日志分析]
&lt;/code&gt;&lt;/pre&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="1.Basics" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/1-Basics/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>02-1.集群创建</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/2.Cluster/2-1.cluster-creation/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/2.Cluster/2-1.cluster-creation/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;Kubernetes-创建集群&quot;&gt;&lt;a href=&quot;#Kubernetes-创建集群&quot; class=&quot;headerlink&quot; title=&quot;Kubernetes 创建集群&quot;&gt;&lt;/a&gt;Kubernetes 创建集群&lt;/h1&gt;&lt;h2 id=&quot;什么是Kubernetes集群？&quot;&gt;&lt;a href=&quot;#什么是Kubernetes集群？&quot; class=&quot;headerlink&quot; title=&quot;什么是Kubernetes集群？&quot;&gt;&lt;/a&gt;什么是Kubernetes集群？&lt;/h2&gt;&lt;p&gt;Kubernetes 集群是由一组节点（Node）组成的集合，这些节点可以是物理机或虚拟机。集群由 Master 节点和工作节点（Node）组成，用于运行和管理容器化的应用程序。&lt;/p&gt;
&lt;h2 id=&quot;创建集群的方法&quot;&gt;&lt;a href=&quot;#创建集群的方法&quot; class=&quot;headerlink&quot; title=&quot;创建集群的方法&quot;&gt;&lt;/a&gt;创建集群的方法&lt;/h2&gt;&lt;h3 id=&quot;1-使用-Minikube-创建集群&quot;&gt;&lt;a href=&quot;#1-使用-Minikube-创建集群&quot; class=&quot;headerlink&quot; title=&quot;1. 使用 Minikube 创建集群&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;使用 Minikube 创建集群&lt;/strong&gt;&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;描述&lt;/strong&gt;: Minikube 是一个工具，可以在本地机器上快速创建一个单节点的 Kubernetes 集群，适用于学习和测试。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;步骤&lt;/strong&gt;:&lt;ol&gt;
&lt;li&gt;安装 Minikube：&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Ubuntu&amp;#x2F;Debian&lt;/strong&gt;:&lt;pre&gt;&lt;code class=&quot;bash&quot;&gt;curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
sudo dpkg -i minikube_latest_amd64.deb
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="2.Cluster" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/2-Cluster/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-1.多容器部署</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-1.multi-container-deployment/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-1.multi-container-deployment/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.606Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;部署多容器应用&quot;&gt;&lt;a href=&quot;#部署多容器应用&quot; class=&quot;headerlink&quot; title=&quot;部署多容器应用&quot;&gt;&lt;/a&gt;部署多容器应用&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;在 Kubernetes 中部署一个包含多个容器的应用，例如一个前端应用和一个后端数据库。使用 Deployment 和 Service 资源来管理 Pod 和网络通信。&lt;/p&gt;
&lt;h2 id=&quot;2-操作步骤&quot;&gt;&lt;a href=&quot;#2-操作步骤&quot; class=&quot;headerlink&quot; title=&quot;2. 操作步骤&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;操作步骤&lt;/strong&gt;&lt;/h2&gt;&lt;h3 id=&quot;2-1-创建-Deployment&quot;&gt;&lt;a href=&quot;#2-1-创建-Deployment&quot; class=&quot;headerlink&quot; title=&quot;2.1 创建 Deployment&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;创建 Deployment&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;创建两个 Deployment，分别用于前端应用和后端数据库。&lt;/p&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-2.Helm 管理</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-2.helm-management/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-2.helm-management/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;使用-Helm-管理应用&quot;&gt;&lt;a href=&quot;#使用-Helm-管理应用&quot; class=&quot;headerlink&quot; title=&quot;使用 Helm 管理应用&quot;&gt;&lt;/a&gt;使用 Helm 管理应用&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;通过 Helm Chart 部署一个复杂的应用，例如 WordPress 或 Prometheus。&lt;/p&gt;
&lt;h2 id=&quot;2-操作步骤&quot;&gt;&lt;a href=&quot;#2-操作步骤&quot; class=&quot;headerlink&quot; title=&quot;2. 操作步骤&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;操作步骤&lt;/strong&gt;&lt;/h2&gt;&lt;h3 id=&quot;2-1-安装-Helm&quot;&gt;&lt;a href=&quot;#2-1-安装-Helm&quot; class=&quot;headerlink&quot; title=&quot;2.1 安装 Helm&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;安装 Helm&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;安装 Helm 客户端。&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;bash&quot;&gt;curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
&lt;/code&gt;&lt;/pre&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-3.自定义资源定义</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-3.custom-resource-definition/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-3.custom-resource-definition/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;实现自定义资源定义-CRD&quot;&gt;&lt;a href=&quot;#实现自定义资源定义-CRD&quot; class=&quot;headerlink&quot; title=&quot;实现自定义资源定义 (CRD)&quot;&gt;&lt;/a&gt;实现自定义资源定义 (CRD)&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;创建一个自定义资源定义 (CRD)，并通过 Operator 模式管理该资源。&lt;/p&gt;
&lt;h2 id=&quot;2-操作步骤&quot;&gt;&lt;a href=&quot;#2-操作步骤&quot; class=&quot;headerlink&quot; title=&quot;2. 操作步骤&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;操作步骤&lt;/strong&gt;&lt;/h2&gt;&lt;h3 id=&quot;2-1-创建-CRD&quot;&gt;&lt;a href=&quot;#2-1-创建-CRD&quot; class=&quot;headerlink&quot; title=&quot;2.1 创建 CRD&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;创建 CRD&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;创建一个名为 &lt;code&gt;myresource&lt;/code&gt; 的 CRD。&lt;/p&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-4.网络策略配置</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-4.network-policy-config/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-4.network-policy-config/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;配置网络策略&quot;&gt;&lt;a href=&quot;#配置网络策略&quot; class=&quot;headerlink&quot; title=&quot;配置网络策略&quot;&gt;&lt;/a&gt;配置网络策略&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;通过 NetworkPolicy 资源，限制 Pod 之间的网络通信，实现网络安全隔离。&lt;/p&gt;
&lt;h2 id=&quot;2-操作步骤&quot;&gt;&lt;a href=&quot;#2-操作步骤&quot; class=&quot;headerlink&quot; title=&quot;2. 操作步骤&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;操作步骤&lt;/strong&gt;&lt;/h2&gt;&lt;h3 id=&quot;2-1-创建-NetworkPolicy&quot;&gt;&lt;a href=&quot;#2-1-创建-NetworkPolicy&quot; class=&quot;headerlink&quot; title=&quot;2.1 创建 NetworkPolicy&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;创建 NetworkPolicy&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;创建一个名为 &lt;code&gt;pod-network-policy&lt;/code&gt; 的 NetworkPolicy。&lt;/p&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-5.多集群管理</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-5.multi-cluster-management/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-5.multi-cluster-management/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;多集群管理&quot;&gt;&lt;a href=&quot;#多集群管理&quot; class=&quot;headerlink&quot; title=&quot;多集群管理&quot;&gt;&lt;/a&gt;多集群管理&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;使用工具（如 Kubefed 或 Rancher）管理多个 Kubernetes 集群，实现跨集群的应用部署和资源调度。&lt;/p&gt;
&lt;h2 id=&quot;2-操作步骤&quot;&gt;&lt;a href=&quot;#2-操作步骤&quot; class=&quot;headerlink&quot; title=&quot;2. 操作步骤&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;操作步骤&lt;/strong&gt;&lt;/h2&gt;&lt;h3 id=&quot;2-1-安装-Rancher&quot;&gt;&lt;a href=&quot;#2-1-安装-Rancher&quot; class=&quot;headerlink&quot; title=&quot;2.1 安装 Rancher&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;安装 Rancher&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;安装 Rancher 以管理多个 Kubernetes 集群。&lt;/p&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>10-6.Kubernetes 实践</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-6.kubernetes-practice/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/10.Practice/10-6.kubernetes-practice/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;Kubernetes-实践项目&quot;&gt;&lt;a href=&quot;#Kubernetes-实践项目&quot; class=&quot;headerlink&quot; title=&quot;Kubernetes 实践项目&quot;&gt;&lt;/a&gt;Kubernetes 实践项目&lt;/h1&gt;&lt;h2 id=&quot;1-目标&quot;&gt;&lt;a href=&quot;#1-目标&quot; class=&quot;headerlink&quot; title=&quot;1. 目标&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;目标&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;通过实际项目巩固所学知识，将理论应用于实践，提升在 Kubernetes 环境中部署和管理复杂应用的能力。&lt;/p&gt;
&lt;h2 id=&quot;2-项目建议&quot;&gt;&lt;a href=&quot;#2-项目建议&quot; class=&quot;headerlink&quot; title=&quot;2. 项目建议&quot;&gt;&lt;/a&gt;2. &lt;strong&gt;项目建议&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;以下是一些适合实践的 Kubernetes 项目，涵盖从基础到高级的多种场景：&lt;/p&gt;
&lt;h3 id=&quot;2-1-部署多容器应用&quot;&gt;&lt;a href=&quot;#2-1-部署多容器应用&quot; class=&quot;headerlink&quot; title=&quot;2.1 部署多容器应用&quot;&gt;&lt;/a&gt;2.1 &lt;strong&gt;部署多容器应用&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;在 Kubernetes 中部署一个包含多个容器的应用，例如一个前端应用和一个后端数据库。使用 Deployment 和 Service 资源来管理 Pod 和网络通信。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;目标&lt;/strong&gt;：掌握 Deployment、Service 和 Pod 的基本用法。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;资源&lt;/strong&gt;：Kubernetes 官方文档中的 &lt;a href=&quot;https://kubernetes.io/docs/concepts/workloads/controllers/deployment/&quot;&gt;Deployment&lt;/a&gt; 和 &lt;a href=&quot;https://kubernetes.io/docs/concepts/services-networking/service/&quot;&gt;Service&lt;/a&gt; 部分[10]。&lt;/li&gt;
&lt;/ul&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="10.Practice" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/10-Practice/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
  <entry>
    <title>04-1.应用探索</title>
    <link href="http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/4.Explore/4-1.app-exploration/"/>
    <id>http://blog.waveyo.cn/2025/04/20/Kubernetes-Learning-Doc.Lib/4.Explore/4-1.app-exploration/</id>
    <published>2025-04-20T16:00:00.000Z</published>
    <updated>2026-03-02T21:32:56.610Z</updated>
    
    
    <summary type="html">&lt;h1 id=&quot;Kubernetes-探索应用&quot;&gt;&lt;a href=&quot;#Kubernetes-探索应用&quot; class=&quot;headerlink&quot; title=&quot;Kubernetes 探索应用&quot;&gt;&lt;/a&gt;Kubernetes 探索应用&lt;/h1&gt;&lt;h2 id=&quot;1-查看应用状态&quot;&gt;&lt;a href=&quot;#1-查看应用状态&quot; class=&quot;headerlink&quot; title=&quot;1. 查看应用状态&quot;&gt;&lt;/a&gt;1. &lt;strong&gt;查看应用状态&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;在 Kubernetes 中，可以通过 &lt;code&gt;kubectl&lt;/code&gt; 命令查看应用的状态，包括 Pod、Deployment、Service 等资源的状态[1]。&lt;/p&gt;
&lt;h3 id=&quot;1-1-查看-Pod-状态&quot;&gt;&lt;a href=&quot;#1-1-查看-Pod-状态&quot; class=&quot;headerlink&quot; title=&quot;1.1 查看 Pod 状态&quot;&gt;&lt;/a&gt;1.1 &lt;strong&gt;查看 Pod 状态&lt;/strong&gt;&lt;/h3&gt;&lt;p&gt;使用以下命令查看集群中所有 Pod 的状态：&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;bash&quot;&gt;kubectl get pods
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;通过 &lt;code&gt;kubectl describe pod &amp;lt;pod-name&amp;gt;&lt;/code&gt; 可以查看某个 Pod 的详细信息，包括事件、容器状态等[1]。&lt;/p&gt;</summary>
    
    
    
    <category term="Kubernetes-Learning-Doc.Lib" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/"/>
    
    <category term="4.Explore" scheme="http://blog.waveyo.cn/categories/Kubernetes-Learning-Doc-Lib/4-Explore/"/>
    
    
    <category term="Linux" scheme="http://blog.waveyo.cn/tags/How-to-use-thefuck-fix-thefuck-Clash-on-Linux/"/>
    
    <category term="k8s" scheme="http://blog.waveyo.cn/tags/k8s/"/>
    
    <category term="Kubernetes-Learning-Doc-Lib" scheme="http://blog.waveyo.cn/tags/Kubernetes-Learning-Doc-Lib/"/>
    
  </entry>
  
</feed>
