├── .github ├── auto-comment.yml ├── auto_assign.yml ├── config.yml ├── issue_label_bot.yaml └── workflows │ └── greetings.yml ├── README.md └── docs ├── notes ├── Docker.md ├── Envoy.md ├── Git.md ├── Istio.md ├── Jenkins.md ├── Knative.md ├── Kubeflow.md ├── Kubernetes.md ├── MicroService.md ├── RPC.md ├── Rancher.md ├── rook-ceph.md ├── 分布式系统.md ├── 数据结构.md ├── 算法.md ├── 计算机操作系统.md ├── 计算机网络.md └── 软件定义网络.md └── pics ├── LoadBalancing.svg ├── PilotAdapters.svg ├── ServiceModel_RequestFlow.svg ├── ServiceModel_Versions.svg ├── TrafficManagementOverview.svg └── arch.svg /.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/.github/auto-comment.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/README.md -------------------------------------------------------------------------------- /docs/notes/Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/Docker.md -------------------------------------------------------------------------------- /docs/notes/Envoy.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/Git.md -------------------------------------------------------------------------------- /docs/notes/Istio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/Istio.md -------------------------------------------------------------------------------- /docs/notes/Jenkins.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/Knative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/Knative.md -------------------------------------------------------------------------------- /docs/notes/Kubeflow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/Kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/Kubernetes.md -------------------------------------------------------------------------------- /docs/notes/MicroService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/MicroService.md -------------------------------------------------------------------------------- /docs/notes/RPC.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/Rancher.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/rook-ceph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/notes/rook-ceph.md -------------------------------------------------------------------------------- /docs/notes/分布式系统.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/数据结构.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/算法.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/计算机操作系统.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/计算机网络.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/软件定义网络.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/pics/LoadBalancing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/LoadBalancing.svg -------------------------------------------------------------------------------- /docs/pics/PilotAdapters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/PilotAdapters.svg -------------------------------------------------------------------------------- /docs/pics/ServiceModel_RequestFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/ServiceModel_RequestFlow.svg -------------------------------------------------------------------------------- /docs/pics/ServiceModel_Versions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/ServiceModel_Versions.svg -------------------------------------------------------------------------------- /docs/pics/TrafficManagementOverview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/TrafficManagementOverview.svg -------------------------------------------------------------------------------- /docs/pics/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiker2011/cloud-native-notes/HEAD/docs/pics/arch.svg --------------------------------------------------------------------------------