重新整理目录结构
parent
7e6656d228
commit
11b3aef22b
281
SUMMARY.md
281
SUMMARY.md
|
@ -1,134 +1,153 @@
|
|||
# Summary
|
||||
# 目录
|
||||
|
||||
### 前言
|
||||
|
||||
- [序言](README.md)
|
||||
- [1. Kubernetes与云原生应用概览](cloud-native/kubernetes-and-cloud-native-app-overview.md)
|
||||
- [2. 概念原理](concepts/index.md)
|
||||
- [2.1 设计理念](concepts/concepts.md)
|
||||
- [2.2 Objects](concepts/objects.md)
|
||||
- [2.2.1 Pod](concepts/pod-overview.md)
|
||||
- [2.2.1.1 Pod解析](concepts/pod.md)
|
||||
- [2.2.1.2 Init容器](concepts/init-containers.md)
|
||||
- [2.2.1.3 Pod安全策略](concepts/pod-security-policy.md)
|
||||
- [2.2.1.4 Pod的生命周期](concepts/pod-lifecycle.md)
|
||||
- [2.2.2 Node](concepts/node.md)
|
||||
- [2.2.3 Namespace](concepts/namespace.md)
|
||||
- [2.2.4 Service](concepts/service.md)
|
||||
- [2.2.5 Volume和Persistent Volume](concepts/volume.md)
|
||||
- [2.2.6 Deployment](concepts/deployment.md)
|
||||
- [2.2.7 Secret](concepts/secret.md)
|
||||
- [2.2.8 StatefulSet](concepts/statefulset.md)
|
||||
- [2.2.9 DaemonSet](concepts/daemonset.md)
|
||||
- [2.2.10 ServiceAccount](concepts/serviceaccount.md)
|
||||
- [2.2.11 ReplicationController和ReplicaSet](concepts/replicaset.md)
|
||||
- [2.2.12 Job](concepts/job.md)
|
||||
- [2.2.13 CronJob](concepts/cronjob.md)
|
||||
- [2.2.14 Ingress](concepts/ingress.md)
|
||||
- [2.2.15 ConfigMap](concepts/configmap.md)
|
||||
- [2.2.15.1 ConfigMap的热更新](concepts/configmap-hot-update.md)
|
||||
- [2.2.16 Horizontal Pod Autoscaling](concepts/horizontal-pod-autoscaling.md)
|
||||
- [2.2.17 Label](concepts/label.md)
|
||||
- [2.2.18 垃圾收集](concepts/garbage-collection.md)
|
||||
- [2.2.19 NetworkPolicy](concepts/network-policy.md)
|
||||
- [2.2.20 Annotation](concepts/annotation.md)
|
||||
- [3. 用户指南](guide/index.md)
|
||||
- [3.1 资源对象配置](guide/resource-configuration.md)
|
||||
- [3.1.1 配置Pod的liveness和readiness探针](guide/configure-liveness-readiness-probes.md)
|
||||
- [3.1.2 配置Pod的Service Account](guide/configure-pod-service-account.md)
|
||||
- [3.1.3 Secret配置](guide/secret-configuration.md)
|
||||
- [3.2.3 管理namespace中的资源配额](guide/resource-quota-management.md)
|
||||
- [3.2 命令使用](guide/command-usage.md)
|
||||
- [3.2.1 docker用户过度到kubectl命令行指南](guide/docker-cli-to-kubectl.md)
|
||||
- [3.2.2 kubectl命令概览](guide/using-kubectl.md)
|
||||
- [3.2.3 kubectl命令技巧大全](guide/kubectl-cheatsheet.md)
|
||||
- [3.3 集群安全性管理](guide/cluster-security-management.md)
|
||||
- [3.3.1 管理集群中的TLS](guide/managing-tls-in-a-cluster.md)
|
||||
- [3.3.2 kubelet的认证授权](guide/kubelet-authentication-authorization.md)
|
||||
- [3.3.3 TLS bootstrap](guide/tls-bootstrapping.md)
|
||||
- [3.3.4 创建用户认证授权的kubeconfig文件](guide/kubectl-user-authentication-authorization.md)
|
||||
- [3.3.5 RBAC——基于角色的访问控制](guide/rbac.md)
|
||||
- [3.3.6 IP伪装代理](guide/ip-masq-agent.md)
|
||||
- [3.3.7 使用kubeconfig或token进行用户身份认证](guide/auth-with-kubeconfig-or-token.md)
|
||||
- [3.3.8 kubernetes中的用户与身份认证授权](guide/authentication.md)
|
||||
- [3.4 访问 Kubernetes 集群](guide/access-kubernetes-cluster.md)
|
||||
- [3.4.1 访问集群](guide/access-cluster.md)
|
||||
- [3.4.2 使用 kubeconfig 文件配置跨集群认证](guide/authenticate-across-clusters-kubeconfig.md)
|
||||
- [3.4.3 通过端口转发访问集群中的应用程序](guide/connecting-to-applications-port-forward.md)
|
||||
- [3.4.4 使用 service 访问群集中的应用程序](guide/service-access-application-cluster.md)
|
||||
- [3.5 在kubernetes中开发部署应用](guide/application-development-deployment-flow.md)
|
||||
- [3.5.1 适用于kubernetes的应用开发部署流程](guide/deploy-applications-in-kubernetes.md)
|
||||
- [3.5.2 迁移传统应用到kubernetes中——以Hadoop YARN为例](guide/migrating-hadoop-yarn-to-kubernetes.md)
|
||||
- [3.5.3 使用StatefulSet部署用状态应用](guide/using-statefulset.md)
|
||||
- [4. 最佳实践](practice/index.md)
|
||||
- [ 4.1 在CentOS上部署kubernetes1.6集群](practice/install-kbernetes1.6-on-centos.md)
|
||||
- [4.1.1 创建TLS证书和秘钥](practice/create-tls-and-secret-key.md)
|
||||
- [4.1.2 创建kubeconfig文件](practice/create-kubeconfig.md)
|
||||
- [4.1.3 创建高可用etcd集群](practice/etcd-cluster-installation.md)
|
||||
- [4.1.4 安装kubectl命令行工具](practice/kubectl-installation.md)
|
||||
- [4.1.5 部署master节点](practice/master-installation.md)
|
||||
- [4.1.6 部署node节点](practice/node-installation.md)
|
||||
- [4.1.7 安装kubedns插件](practice/kubedns-addon-installation.md)
|
||||
- [4.1.8 安装dashboard插件](practice/dashboard-addon-installation.md)
|
||||
- [4.1.9 安装heapster插件](practice/heapster-addon-installation.md)
|
||||
- [4.1.10 安装EFK插件](practice/efk-addon-installation.md)
|
||||
- [4.2 服务发现与负载均衡](practice/service-discovery-and-loadbalancing.md)
|
||||
- [4.2.1 安装Traefik ingress](practice/traefik-ingress-installation.md)
|
||||
- [4.2.2 分布式负载测试](practice/distributed-load-test.md)
|
||||
- [4.2.3 网络和集群性能测试](practice/network-and-cluster-perfermance-test.md)
|
||||
- [4.2.4 边缘节点配置](practice/edge-node-configuration.md)
|
||||
- [4.2.5 安装Nginx ingress](practice/nginx-ingress-installation.md)
|
||||
- [4.3 运维管理](practice/operation.md)
|
||||
- [4.3.1 服务滚动升级](practice/service-rolling-update.md)
|
||||
- [4.3.2 应用日志收集](practice/app-log-collection.md)
|
||||
- [4.3.3 配置最佳实践](practice/configuration-best-practice.md)
|
||||
- [4.3.4 集群及应用监控](practice/monitor.md)
|
||||
- [4.3.6 数据持久化问题](practice/data-persistence-problem.md)
|
||||
- [4.3.7 管理容器的计算资源](practice/manage-compute-resources-container.md)
|
||||
- [4.4 存储管理](practice/storage.md)
|
||||
- [4.4.1 GlusterFS](practice/glusterfs.md)
|
||||
- [4.4.1.1 使用GlusterFS做持久化存储](practice/using-glusterfs-for-persistent-storage.md)
|
||||
- [4.4.1.2 在OpenShift中使用GlusterFS做持久化存储](practice/storage-for-containers-using-glusterfs-with-openshift.md)
|
||||
- [4.4.2 CephFS](practice/cephfs.md)
|
||||
- [4.4.2.1 使用Ceph做持久化存储](practice/using-ceph-for-persistent-storage.md)
|
||||
- [4.5 集群与应用监控](practice/monitoring.md)
|
||||
- [4.5.1 Heapster](practice//heapster.md)
|
||||
- [4.5.1.1 使用Heapster获取集群和对象的metric数据](practice/using-heapster-to-get-object-metrics.md)
|
||||
- [4.5.2 Prometheus](practice/prometheus.md)
|
||||
- [4.5.2.1 使用Prometheus监控kubernetes集群](practice/using-prometheus-to-monitor-kuberentes-cluster.md)
|
||||
- [4.6 服务编排管理](practice/services-management-tool.md)
|
||||
- [4.6.1 使用Helm管理kubernetes应用](practice/helm.md)
|
||||
- [4.6.2 构建私有Chart仓库](practice/create-private-charts-repo.md)
|
||||
- [4.7 持续集成与发布](practice/ci-cd.md)
|
||||
- [4.7.1 使用Jenkins进行持续集成与发布](practice/jenkins-ci-cd.md)
|
||||
- [4.7.2 使用Drone进行持续集成与发布](practice/drone-ci-cd.md)
|
||||
- [4.8 更新与升级](practice/update-and-upgrade.md)
|
||||
- [4.8.1 手动升级kubernetes集群](practice/manually-upgrade.md)
|
||||
- [4.8.2 升级dashboard](practice/dashboard-upgrade.md)
|
||||
- [5. 领域应用](usecases/index.md)
|
||||
- [5.1 微服务架构](usecases/microservices.md)
|
||||
- [5.1.1 微服务中的服务发现](usecases/service-discovery-in-microservices.md)
|
||||
- [5.2 Service Mesh 服务网格](usecases/service-mesh.md)
|
||||
- [5.1.1 Istio](usecases/istio.md)
|
||||
- [5.1.1.1 安装并试用Istio service mesh](usecases/istio-installation.md)
|
||||
- [5.1.1.2 配置请求的路由规则](usecases/configuring-request-routing.md)
|
||||
- [5.1.1.3 安装和拓展Istio service mesh](usecases/install-and-expand-istio-mesh.md)
|
||||
- [5.1.1.4 集成虚拟机](usecases/integrating-vms.md)
|
||||
- [5.1.2 Linkerd](usecases/linkerd.md)
|
||||
- [5.1.2.1 Linkerd 使用指南](usecases/linkerd-user-guide.md)
|
||||
- [5.2 大数据](usecases/big-data.md)
|
||||
- [5.2.1 Spark standalone on Kubernetes](usecases/spark-standalone-on-kubernetes.md)
|
||||
- [5.2.2 运行支持kubernetes原生调度的Spark程序](usecases/running-spark-with-kubernetes-native-scheduler.md)
|
||||
- [5.3 Serverless架构](usecases/serverless.md)
|
||||
- [5.4 边缘计算](usecases/edge-computing.md)
|
||||
- [6. 开发指南](develop/index.md)
|
||||
- [6.1 开发环境搭建](develop/developing-environment.md)
|
||||
- [6.2 单元测试和集成测试](develop/testing.md)
|
||||
- [6.3 client-go示例](develop/client-go-sample.md)
|
||||
- [6.4 社区贡献](develop/contribute.md)
|
||||
- [6.5 Minikube](develop/minikube.md)
|
||||
- [7. 附录](appendix/index.md)
|
||||
- [7.1 Docker最佳实践](appendix/docker-best-practice.md)
|
||||
- [7.2 问题记录](appendix/issues.md)
|
||||
- [7.3 使用技巧](appendix/tricks.md)
|
||||
- [7.4 kubernetes中的应用故障排查](appendix/debug-kubernetes-services.md)
|
||||
- [7.5 Kubernetes相关资讯和情报链接](appendix/material-share.md)
|
||||
- [Kubernetes与云原生应用概览](cloud-native/kubernetes-and-cloud-native-app-overview.md)
|
||||
|
||||
### 概念与原理
|
||||
|
||||
- [Kubernetes架构](concepts/index.md)
|
||||
- [设计理念](concepts/concepts.md)
|
||||
- [资源对象与基本概念解析](concepts/objects.md)
|
||||
- [Pod](concepts/pod-overview.md)
|
||||
- [Pod解析](concepts/pod.md)
|
||||
- [Init容器](concepts/init-containers.md)
|
||||
- [Pod安全策略](concepts/pod-security-policy.md)
|
||||
- [Pod的生命周期](concepts/pod-lifecycle.md)
|
||||
- [Node](concepts/node.md)
|
||||
- [Namespace](concepts/namespace.md)
|
||||
- [Service](concepts/service.md)
|
||||
- [Volume和Persistent Volume](concepts/volume.md)
|
||||
- [Deployment](concepts/deployment.md)
|
||||
- [Secret](concepts/secret.md)
|
||||
- [StatefulSet](concepts/statefulset.md)
|
||||
- [DaemonSet](concepts/daemonset.md)
|
||||
- [ServiceAccount](concepts/serviceaccount.md)
|
||||
- [ReplicationController和ReplicaSet](concepts/replicaset.md)
|
||||
- [Job](concepts/job.md)
|
||||
- [CronJob](concepts/cronjob.md)
|
||||
- [Ingress](concepts/ingress.md)
|
||||
- [ConfigMap](concepts/configmap.md)
|
||||
- [ConfigMap的热更新](concepts/configmap-hot-update.md)
|
||||
- [Horizontal Pod Autoscaling](concepts/horizontal-pod-autoscaling.md)
|
||||
- [Label](concepts/label.md)
|
||||
- [垃圾收集](concepts/garbage-collection.md)
|
||||
- [NetworkPolicy](concepts/network-policy.md)
|
||||
- [Annotation](concepts/annotation.md)
|
||||
|
||||
### 用户指南
|
||||
|
||||
- [用户指南](guide/index.md)
|
||||
- [资源对象配置](guide/resource-configuration.md)
|
||||
- [配置Pod的liveness和readiness探针](guide/configure-liveness-readiness-probes.md)
|
||||
- [配置Pod的Service Account](guide/configure-pod-service-account.md)
|
||||
- [Secret配置](guide/secret-configuration.md)
|
||||
- [管理namespace中的资源配额](guide/resource-quota-management.md)
|
||||
- [命令使用](guide/command-usage.md)
|
||||
- [docker用户过度到kubectl命令行指南](guide/docker-cli-to-kubectl.md)
|
||||
- [kubectl命令概览](guide/using-kubectl.md)
|
||||
- [kubectl命令技巧大全](guide/kubectl-cheatsheet.md)
|
||||
- [集群安全性管理](guide/cluster-security-management.md)
|
||||
- [管理集群中的TLS](guide/managing-tls-in-a-cluster.md)
|
||||
- [kubelet的认证授权](guide/kubelet-authentication-authorization.md)
|
||||
- [TLS bootstrap](guide/tls-bootstrapping.md)
|
||||
- [创建用户认证授权的kubeconfig文件](guide/kubectl-user-authentication-authorization.md)
|
||||
- [RBAC——基于角色的访问控制](guide/rbac.md)
|
||||
- [IP伪装代理](guide/ip-masq-agent.md)
|
||||
- [使用kubeconfig或token进行用户身份认证](guide/auth-with-kubeconfig-or-token.md)
|
||||
- [ kubernetes中的用户与身份认证授权](guide/authentication.md)
|
||||
- [访问 Kubernetes 集群](guide/access-kubernetes-cluster.md)
|
||||
- [访问集群](guide/access-cluster.md)
|
||||
- [使用 kubeconfig 文件配置跨集群认证](guide/authenticate-across-clusters-kubeconfig.md)
|
||||
- [通过端口转发访问集群中的应用程序](guide/connecting-to-applications-port-forward.md)
|
||||
- [使用 service 访问群集中的应用程序](guide/service-access-application-cluster.md)
|
||||
- [在kubernetes中开发部署应用](guide/application-development-deployment-flow.md)
|
||||
- [适用于kubernetes的应用开发部署流程](guide/deploy-applications-in-kubernetes.md)
|
||||
- [迁移传统应用到kubernetes中——以Hadoop YARN为例](guide/migrating-hadoop-yarn-to-kubernetes.md)
|
||||
- [使用StatefulSet部署用状态应用](guide/using-statefulset.md)
|
||||
|
||||
### 最佳实践
|
||||
|
||||
- [最佳实践概览](practice/index.md)
|
||||
- [在CentOS上部署kubernetes1.6集群](practice/install-kbernetes1.6-on-centos.md)
|
||||
- [创建TLS证书和秘钥](practice/create-tls-and-secret-key.md)
|
||||
- [创建kubeconfig文件](practice/create-kubeconfig.md)
|
||||
- [创建高可用etcd集群](practice/etcd-cluster-installation.md)
|
||||
- [安装kubectl命令行工具](practice/kubectl-installation.md)
|
||||
- [部署master节点](practice/master-installation.md)
|
||||
- [部署node节点](practice/node-installation.md)
|
||||
- [安装kubedns插件](practice/kubedns-addon-installation.md)
|
||||
- [安装dashboard插件](practice/dashboard-addon-installation.md)
|
||||
- [安装heapster插件](practice/heapster-addon-installation.md)
|
||||
- [安装EFK插件](practice/efk-addon-installation.md)
|
||||
- [服务发现与负载均衡](practice/service-discovery-and-loadbalancing.md)
|
||||
- [安装Traefik ingress](practice/traefik-ingress-installation.md)
|
||||
- [分布式负载测试](practice/distributed-load-test.md)
|
||||
- [网络和集群性能测试](practice/network-and-cluster-perfermance-test.md)
|
||||
- [边缘节点配置](practice/edge-node-configuration.md)
|
||||
- [安装Nginx ingress](practice/nginx-ingress-installation.md)
|
||||
- [运维管理](practice/operation.md)
|
||||
- [服务滚动升级](practice/service-rolling-update.md)
|
||||
- [应用日志收集](practice/app-log-collection.md)
|
||||
- [配置最佳实践](practice/configuration-best-practice.md)
|
||||
- [集群及应用监控](practice/monitor.md)
|
||||
- [数据持久化问题](practice/data-persistence-problem.md)
|
||||
- [管理容器的计算资源](practice/manage-compute-resources-container.md)
|
||||
- [存储管理](practice/storage.md)
|
||||
- [GlusterFS](practice/glusterfs.md)
|
||||
- [使用GlusterFS做持久化存储](practice/using-glusterfs-for-persistent-storage.md)
|
||||
- [在OpenShift中使用GlusterFS做持久化存储](practice/storage-for-containers-using-glusterfs-with-openshift.md)
|
||||
- [CephFS](practice/cephfs.md)
|
||||
- [使用Ceph做持久化存储](practice/using-ceph-for-persistent-storage.md)
|
||||
- [集群与应用监控](practice/monitoring.md)
|
||||
- [Heapster](practice//heapster.md)
|
||||
- [使用Heapster获取集群和对象的metric数据](practice/using-heapster-to-get-object-metrics.md)
|
||||
- [Prometheus](practice/prometheus.md)
|
||||
- [使用Prometheus监控kubernetes集群](practice/using-prometheus-to-monitor-kuberentes-cluster.md)
|
||||
- [服务编排管理](practice/services-management-tool.md)
|
||||
- [使用Helm管理kubernetes应用](practice/helm.md)
|
||||
- [构建私有Chart仓库](practice/create-private-charts-repo.md)
|
||||
- [持续集成与发布](practice/ci-cd.md)
|
||||
- [使用Jenkins进行持续集成与发布](practice/jenkins-ci-cd.md)
|
||||
- [使用Drone进行持续集成与发布](practice/drone-ci-cd.md)
|
||||
- [更新与升级](practice/update-and-upgrade.md)
|
||||
- [ 手动升级kubernetes集群](practice/manually-upgrade.md)
|
||||
- [升级dashboard](practice/dashboard-upgrade.md)
|
||||
|
||||
### 领域应用
|
||||
|
||||
- [领域应用概览](usecases/index.md)
|
||||
- [微服务架构](usecases/microservices.md)
|
||||
- [微服务中的服务发现](usecases/service-discovery-in-microservices.md)
|
||||
- [Service Mesh 服务网格](usecases/service-mesh.md)
|
||||
- [Istio](usecases/istio.md)
|
||||
- [安装并试用Istio service mesh](usecases/istio-installation.md)
|
||||
- [配置请求的路由规则](usecases/configuring-request-routing.md)
|
||||
- [安装和拓展Istio service mesh](usecases/install-and-expand-istio-mesh.md)
|
||||
- [集成虚拟机](usecases/integrating-vms.md)
|
||||
- [Linkerd](usecases/linkerd.md)
|
||||
- [Linkerd 使用指南](usecases/linkerd-user-guide.md)
|
||||
- [大数据](usecases/big-data.md)
|
||||
- [Spark standalone on Kubernetes](usecases/spark-standalone-on-kubernetes.md)
|
||||
- [运行支持kubernetes原生调度的Spark程序](usecases/running-spark-with-kubernetes-native-scheduler.md)
|
||||
- [Serverless架构](usecases/serverless.md)
|
||||
- [边缘计算](usecases/edge-computing.md)
|
||||
|
||||
### 开发指南
|
||||
|
||||
- [开发指南概览](develop/index.md)
|
||||
- [开发环境搭建](develop/developing-environment.md)
|
||||
- [单元测试和集成测试](develop/testing.md)
|
||||
- [client-go示例](develop/client-go-sample.md)
|
||||
- [社区贡献](develop/contribute.md)
|
||||
- [Minikube](develop/minikube.md)
|
||||
|
||||
### 附录
|
||||
|
||||
- [附录说明](appendix/index.md)
|
||||
- [Kubernetes中的应用故障排查](appendix/debug-kubernetes-services.md)
|
||||
- [Kubernetes相关资讯和情报链接](appendix/material-share.md)
|
||||
- [Docker最佳实践](appendix/docker-best-practice.md)
|
||||
- [使用技巧](appendix/tricks.md)
|
||||
- [问题记录](appendix/issues.md)
|
|
@ -1,4 +1,4 @@
|
|||
# 附录
|
||||
# 附录说明
|
||||
|
||||
参考文档以及一些实用的资源链接。
|
||||
|
||||
|
|
10
book.json
10
book.json
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"title": "Kubernetes Handbook",
|
||||
"title": "Kubernetes Handbook - jimmysong.io",
|
||||
"description": "Kubernetes中文指南/实践手册|kubernetes handbook|jimmysong.io|宋净超",
|
||||
"language": "zh-hans",
|
||||
"author": "Jimmy Song",
|
||||
"links": {
|
||||
"sidebar": {
|
||||
"Home": "https://jimmysong.io"
|
||||
"Jimmy Song": "https://jimmysong.io"
|
||||
}
|
||||
},
|
||||
"plugins": [
|
||||
|
@ -20,9 +20,13 @@
|
|||
"github-buttons@2.1.0",
|
||||
"favicon@^0.0.2",
|
||||
"tbfed-pagefooter@^0.0.1",
|
||||
"3-ba"
|
||||
"3-ba",
|
||||
"theme-default"
|
||||
],
|
||||
"pluginsConfig": {
|
||||
"theme-default": {
|
||||
"showLevel": true
|
||||
},
|
||||
"github": {
|
||||
"url": "https://github.com/rootsongjc/kubernetes-handbook"
|
||||
},
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
# 开发指南
|
||||
# 开发指南说明
|
||||
|
||||
讲解如何在原生 Kubernetes 的基础上做定制开发。
|
|
@ -5,3 +5,4 @@
|
|||
- [配置Pod的liveness和readiness探针](configure-liveness-readiness-probes.md)
|
||||
- [管理集群中的TLS](managing-tls-in-a-cluster.md)
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
# 领域应用
|
||||
|
||||
Kubernetes 和云原生应用在各个领域中的实践。
|
Loading…
Reference in New Issue