├── .gitignore ├── README.md ├── SUMMARY.md ├── _index.md ├── book.json ├── deploy.sh ├── kube-apiserver ├── NewAPIServerCommand.md └── _index.md ├── kube-controller-manager ├── Informer.md ├── NewControllerManagerCommand.md ├── _index.md ├── controller-manager-xmind.md ├── controller-runtime.md ├── daemonset-controller.md ├── deployment-controller.md └── replicaset-controller.md ├── kube-scheduler ├── NewSchedulerCommand.md ├── PrioritizeNodes.md ├── _index.md ├── findNodesThatFit.md ├── preempt.md ├── registerAlgorithmProvider.md ├── scheduleOne.md └── scheduler-xmind.md ├── kubelet ├── NewKubeletCommand.md ├── NewMainKubelet.md ├── _index.md ├── kubelet-xmind.md ├── startKubelet.md ├── syncLoopIteration.md └── syncPod.md └── summary ├── _index.md ├── etcd-storage.md └── resource-object.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | _book 3 | .DS_Store 4 | gh-pages -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/_index.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/book.json -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/deploy.sh -------------------------------------------------------------------------------- /kube-apiserver/NewAPIServerCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-apiserver/NewAPIServerCommand.md -------------------------------------------------------------------------------- /kube-apiserver/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-apiserver/_index.md -------------------------------------------------------------------------------- /kube-controller-manager/Informer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/Informer.md -------------------------------------------------------------------------------- /kube-controller-manager/NewControllerManagerCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/NewControllerManagerCommand.md -------------------------------------------------------------------------------- /kube-controller-manager/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/_index.md -------------------------------------------------------------------------------- /kube-controller-manager/controller-manager-xmind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/controller-manager-xmind.md -------------------------------------------------------------------------------- /kube-controller-manager/controller-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/controller-runtime.md -------------------------------------------------------------------------------- /kube-controller-manager/daemonset-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/daemonset-controller.md -------------------------------------------------------------------------------- /kube-controller-manager/deployment-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/deployment-controller.md -------------------------------------------------------------------------------- /kube-controller-manager/replicaset-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-controller-manager/replicaset-controller.md -------------------------------------------------------------------------------- /kube-scheduler/NewSchedulerCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/NewSchedulerCommand.md -------------------------------------------------------------------------------- /kube-scheduler/PrioritizeNodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/PrioritizeNodes.md -------------------------------------------------------------------------------- /kube-scheduler/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/_index.md -------------------------------------------------------------------------------- /kube-scheduler/findNodesThatFit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/findNodesThatFit.md -------------------------------------------------------------------------------- /kube-scheduler/preempt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/preempt.md -------------------------------------------------------------------------------- /kube-scheduler/registerAlgorithmProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/registerAlgorithmProvider.md -------------------------------------------------------------------------------- /kube-scheduler/scheduleOne.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/scheduleOne.md -------------------------------------------------------------------------------- /kube-scheduler/scheduler-xmind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kube-scheduler/scheduler-xmind.md -------------------------------------------------------------------------------- /kubelet/NewKubeletCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/NewKubeletCommand.md -------------------------------------------------------------------------------- /kubelet/NewMainKubelet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/NewMainKubelet.md -------------------------------------------------------------------------------- /kubelet/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/_index.md -------------------------------------------------------------------------------- /kubelet/kubelet-xmind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/kubelet-xmind.md -------------------------------------------------------------------------------- /kubelet/startKubelet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/startKubelet.md -------------------------------------------------------------------------------- /kubelet/syncLoopIteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/syncLoopIteration.md -------------------------------------------------------------------------------- /kubelet/syncPod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/kubelet/syncPod.md -------------------------------------------------------------------------------- /summary/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/summary/_index.md -------------------------------------------------------------------------------- /summary/etcd-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/summary/etcd-storage.md -------------------------------------------------------------------------------- /summary/resource-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/k8s-source-code-analysis/HEAD/summary/resource-object.md --------------------------------------------------------------------------------