From fdc96bb8ca865be43c90cd10011f02a7e658cbb8 Mon Sep 17 00:00:00 2001 From: yinwenqin Date: Sat, 6 Nov 2021 15:36:09 +0800 Subject: [PATCH] update cdn url --- ...netes源码学习-APIServer-P4-APIServer的鉴权机制.md | 2 +- ...-Controller-P3-Controller分类与Deployment Controller.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apiServer/Kubernetes源码学习-APIServer-P4-APIServer的鉴权机制.md b/apiServer/Kubernetes源码学习-APIServer-P4-APIServer的鉴权机制.md index 9e6b3f4..602742f 100644 --- a/apiServer/Kubernetes源码学习-APIServer-P4-APIServer的鉴权机制.md +++ b/apiServer/Kubernetes源码学习-APIServer-P4-APIServer的鉴权机制.md @@ -218,7 +218,7 @@ RBAC 鉴权机制使用 `rbac.authorization.k8s.io` [API 组](https://kubernetes RBAC模式的详细描述和使用样例请参考我之前的文章: -[k8s(十四)、RBAC权限控制](https://blog.wqyin.cn/2018/12/06/k8s(%E5%8D%81%E5%9B%9B)%E3%80%81RBAC%E6%9D%83%E9%99%90%E6%8E%A7%E5%88%B6.html) +[k8s(十四)、RBAC权限控制](https://wqyin.cn/2018/12/06/k8s(%E5%8D%81%E5%9B%9B)%E3%80%81RBAC%E6%9D%83%E9%99%90%E6%8E%A7%E5%88%B6.html) diff --git a/controller/Kubernetes源码学习-Controller-P3-Controller分类与Deployment Controller.md b/controller/Kubernetes源码学习-Controller-P3-Controller分类与Deployment Controller.md index c1c52e7..cbc041d 100644 --- a/controller/Kubernetes源码学习-Controller-P3-Controller分类与Deployment Controller.md +++ b/controller/Kubernetes源码学习-Controller-P3-Controller分类与Deployment Controller.md @@ -6,11 +6,11 @@ Controller部分的第一篇文章中,我们从cobra启动命令入口开始,进入到了多实例leader选举部分的代码,对leader选举流程做了详细地分析: -[Controller-P1-多实例leader选举](https://blog.wqyin.cn/gitbooks/kubeSourceCodeNote/controller/Kubernetes源码学习-Controller-P1-多实例leader选举.html) +[Controller-P1-多实例leader选举](https://wqyin.cn/gitbooks/kubeSourceCodeNote/controller/Kubernetes源码学习-Controller-P1-多实例leader选举.html) 接着在第二篇中,文字和图解简单描述了controller是如何结合client-go模块中的informer工作的,为本篇及后面的几篇作铺垫: -[Controller-P2-Controller与informer](https://blog.wqyin.cn/gitbooks/kubeSourceCodeNote/controller/Kubernetes源码学习-Controller-P2-Controller与informer.html) +[Controller-P2-Controller与informer](https://wqyin.cn/gitbooks/kubeSourceCodeNote/controller/Kubernetes源码学习-Controller-P2-Controller与informer.html) 那么本篇,就接着第一篇往下,继续看代码。