├── .DS_Store ├── .gitignore ├── README.md ├── install ├── images ├── install.md ├── install_cluster.md ├── install_node.md ├── kubeadm-config.yaml └── pull_images.sh └── train ├── auth ├── auth.md ├── auth_pod.yaml ├── role_binding_demo.yaml └── role_demo.yaml ├── docs ├── docs.md ├── orders.md └── resources.md ├── resource ├── pod_resource.yaml └── resource.md ├── scheduler ├── pod_affinity.yaml ├── pod_affinity_pre.yaml └── scheduler.md ├── storage ├── configmap.yaml ├── configmap_pod.yaml ├── configmap_volumes_pod.yaml ├── storage.md └── storage.yaml ├── summary └── summary.md └── yaml ├── ingress ├── deploy-demo.yaml ├── ingress-myapp.yaml ├── ingress.md └── service-nodeport.yaml ├── pod ├── nginx_pod.yaml ├── nginx_pod_poststart.yaml └── pod.md ├── pod_controller ├── daemon.yaml ├── deploy.yaml ├── pod_controller.md └── replicaSet.yaml ├── service ├── service.md └── service.yaml └── yaml.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/README.md -------------------------------------------------------------------------------- /install/images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/images -------------------------------------------------------------------------------- /install/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/install.md -------------------------------------------------------------------------------- /install/install_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/install_cluster.md -------------------------------------------------------------------------------- /install/install_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/install_node.md -------------------------------------------------------------------------------- /install/kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/kubeadm-config.yaml -------------------------------------------------------------------------------- /install/pull_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/install/pull_images.sh -------------------------------------------------------------------------------- /train/auth/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/auth/auth.md -------------------------------------------------------------------------------- /train/auth/auth_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/auth/auth_pod.yaml -------------------------------------------------------------------------------- /train/auth/role_binding_demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/auth/role_binding_demo.yaml -------------------------------------------------------------------------------- /train/auth/role_demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/auth/role_demo.yaml -------------------------------------------------------------------------------- /train/docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/docs/docs.md -------------------------------------------------------------------------------- /train/docs/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/docs/orders.md -------------------------------------------------------------------------------- /train/docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/docs/resources.md -------------------------------------------------------------------------------- /train/resource/pod_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/resource/pod_resource.yaml -------------------------------------------------------------------------------- /train/resource/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/resource/resource.md -------------------------------------------------------------------------------- /train/scheduler/pod_affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/scheduler/pod_affinity.yaml -------------------------------------------------------------------------------- /train/scheduler/pod_affinity_pre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/scheduler/pod_affinity_pre.yaml -------------------------------------------------------------------------------- /train/scheduler/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/scheduler/scheduler.md -------------------------------------------------------------------------------- /train/storage/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/storage/configmap.yaml -------------------------------------------------------------------------------- /train/storage/configmap_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/storage/configmap_pod.yaml -------------------------------------------------------------------------------- /train/storage/configmap_volumes_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/storage/configmap_volumes_pod.yaml -------------------------------------------------------------------------------- /train/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/storage/storage.md -------------------------------------------------------------------------------- /train/storage/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/storage/storage.yaml -------------------------------------------------------------------------------- /train/summary/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/summary/summary.md -------------------------------------------------------------------------------- /train/yaml/ingress/deploy-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/ingress/deploy-demo.yaml -------------------------------------------------------------------------------- /train/yaml/ingress/ingress-myapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/ingress/ingress-myapp.yaml -------------------------------------------------------------------------------- /train/yaml/ingress/ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/ingress/ingress.md -------------------------------------------------------------------------------- /train/yaml/ingress/service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/ingress/service-nodeport.yaml -------------------------------------------------------------------------------- /train/yaml/pod/nginx_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod/nginx_pod.yaml -------------------------------------------------------------------------------- /train/yaml/pod/nginx_pod_poststart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod/nginx_pod_poststart.yaml -------------------------------------------------------------------------------- /train/yaml/pod/pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod/pod.md -------------------------------------------------------------------------------- /train/yaml/pod_controller/daemon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod_controller/daemon.yaml -------------------------------------------------------------------------------- /train/yaml/pod_controller/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod_controller/deploy.yaml -------------------------------------------------------------------------------- /train/yaml/pod_controller/pod_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod_controller/pod_controller.md -------------------------------------------------------------------------------- /train/yaml/pod_controller/replicaSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/pod_controller/replicaSet.yaml -------------------------------------------------------------------------------- /train/yaml/service/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/service/service.md -------------------------------------------------------------------------------- /train/yaml/service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/service/service.yaml -------------------------------------------------------------------------------- /train/yaml/yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylzyqt/kubernetes-integration/HEAD/train/yaml/yaml.md --------------------------------------------------------------------------------