├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── k8s-books.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── k8s-book └── 67道kubernetes面试题.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/k8s-books.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/k8s-books.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/README.md -------------------------------------------------------------------------------- /k8s-book/67道kubernetes面试题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-cn/k8s-books/HEAD/k8s-book/67道kubernetes面试题.md --------------------------------------------------------------------------------