Skip to content

Commit

Permalink
Add zh and en versions
Browse files Browse the repository at this point in the history
  • Loading branch information
feiskyer committed Mar 11, 2018
1 parent a233796 commit 349d625
Show file tree
Hide file tree
Showing 411 changed files with 73 additions and 21 deletions.
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
@@ -1,7 +1,7 @@
# 如何贡献
# CONTRIBUTING

1. 在 Github 上 [Fork](https://github.com/feiskyer/kubernetes-handbook/fork) 项目到自己的仓库。
2. 将 fork 后的项目拉到本地: `git clone https://github.com/<user-name>/kubernetes-handbook`
3. 新建一个分支,并添加或编辑内容:`git checkout -b new-branch`
4. 提交并推送到 github`git commit -am "comments"; git push`
5. 在 Github 上提交 Pull Request
1. [Fork on Github](https://github.com/feiskyer/kubernetes-handbook/fork).
2. Clone the forked repo: `git clone https://github.com/<user-name>/kubernetes-handbook -b en`.
3. Create a new branch, add some changes and commit: `git checkout -b new-branch`.
4. Push the branch to github: `git commit -am "comments"; git push`.
5. File a Pull Request on Github to `en` branch.
5 changes: 5 additions & 0 deletions LANGS.md
@@ -0,0 +1,5 @@
# Languages

* [中文](zh/)
* [English](en/)

21 changes: 9 additions & 12 deletions README.md
Expand Up @@ -12,27 +12,24 @@ Kubernetes 是谷歌开源的容器集群管理系统,是 Google 多年大规

Kubernetes 发展非常迅速,已经成为容器编排领域的领导者。Kubernetes 的中文资料也非常丰富,但系统化和紧跟社区更新的则就比较少见了。《Kubernetes 指南》开源电子书旨在整理平时在开发和使用 Kubernetes 时的参考指南和实践总结,形成一个系统化的参考指南以方便查阅。欢迎大家关注和添加完善内容。

## Kubernetes 版本
## 在线阅读

- 中文:[GitBook](https://kubernetes.feisky.xyz/zh/) [Github](https://github.com/feiskyer/kubernetes-handbook/blob/master/zh/SUMMARY.md) [InfoQ](http://www.infoq.com/cn/minibooks/Kubernetes-handbook)
- English:[GitBook](https://kubernetes.feisky.xyz/en/) [Github](https://github.com/feiskyer/kubernetes-handbook/blob/master/en/SUMMARY.md)

如无特殊说明,本指南所有文档仅适用于 Kubernetes v1.6 及以上版本。
## 项目源码

项目源码存放于 Github 上,[https://github.com/feiskyer/kubernetes-handbook](https://github.com/feiskyer/kubernetes-handbook)

### 本书版本更新记录

> 如无特殊说明,本指南所有文档仅适用于 Kubernetes v1.6 及以上版本。
- 2018.02.07 更新至 [Kubernetes v1.9](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.9.md) 版本
- 2017.12.09 更新至 [Kubernetes v1.8](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.8.md) 版本
- 2017.09.11 更新至 [Kubernetes v1.7](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.7.md) 版本
- 2017.06.29 更新至 [Kubernetes v1.6](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.6.md) 版本

## 在线阅读

可以通过 [GitBook](https://kubernetes.feisky.xyz/) 或者 [Github](https://github.com/feiskyer/kubernetes-handbook/blob/master/SUMMARY.md) 来在线阅读。

也可以点击 [这里](http://www.infoq.com/cn/minibooks/Kubernetes-handbook) 下载 InfoQ 帮助制作和发布的 ePub、PDF 和 MOBI 电子书。

## 项目源码

项目源码存放于 Github 上,[https://github.com/feiskyer/kubernetes-handbook](https://github.com/feiskyer/kubernetes-handbook)

## 微信公众号

扫码关注微信公众号,回复关键字即可在微信中查看相关章节。
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "kubernetes-handbook",
"version": "1.0.0",
"description": "Kubernetes是谷歌开源的容器集群管理系统,是Google多年大规模容器管理技术Borg的开源版本,也是CNCF最重要的项目之一,主要功能包括:",
"description": "Kubernetes Handbook",
"main": "index.js",
"directories": {
"example": "examples"
Expand Down
7 changes: 7 additions & 0 deletions zh/CONTRIBUTING.md
@@ -0,0 +1,7 @@
# 如何贡献

1. 在 Github 上 [Fork](https://github.com/feiskyer/kubernetes-handbook/fork) 项目到自己的仓库。
2. 将 fork 后的项目拉到本地: `git clone https://github.com/<user-name>/kubernetes-handbook`
3. 新建一个分支,并添加或编辑内容:`git checkout -b new-branch`
4. 提交并推送到 github:`git commit -am "comments"; git push`
5. 在 Github 上提交 Pull Request。
44 changes: 44 additions & 0 deletions zh/README.md
@@ -0,0 +1,44 @@
# Kubernetes 指南

Kubernetes 是谷歌开源的容器集群管理系统,是 Google 多年大规模容器管理技术 Borg 的开源版本,也是 CNCF 最重要的项目之一,主要功能包括:

- 基于容器的应用部署、维护和滚动升级
- 负载均衡和服务发现
- 跨机器和跨地区的集群调度
- 自动伸缩
- 无状态服务和有状态服务
- 广泛的 Volume 支持
- 插件机制保证扩展性

Kubernetes 发展非常迅速,已经成为容器编排领域的领导者。Kubernetes 的中文资料也非常丰富,但系统化和紧跟社区更新的则就比较少见了。《Kubernetes 指南》开源电子书旨在整理平时在开发和使用 Kubernetes 时的参考指南和实践总结,形成一个系统化的参考指南以方便查阅。欢迎大家关注和添加完善内容。

## Kubernetes 版本

如无特殊说明,本指南所有文档仅适用于 Kubernetes v1.6 及以上版本。

### 本书版本更新记录

- 2018.02.07 更新至 [Kubernetes v1.9](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.9.md) 版本
- 2017.12.09 更新至 [Kubernetes v1.8](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.8.md) 版本
- 2017.09.11 更新至 [Kubernetes v1.7](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.7.md) 版本
- 2017.06.29 更新至 [Kubernetes v1.6](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.6.md) 版本

## 在线阅读

可以通过 [GitBook](https://kubernetes.feisky.xyz/) 或者 [Github](https://github.com/feiskyer/kubernetes-handbook/blob/master/SUMMARY.md) 来在线阅读。

也可以点击 [这里](http://www.infoq.com/cn/minibooks/Kubernetes-handbook) 下载 InfoQ 帮助制作和发布的 ePub、PDF 和 MOBI 电子书。

## 项目源码

项目源码存放于 Github 上,[https://github.com/feiskyer/kubernetes-handbook](https://github.com/feiskyer/kubernetes-handbook)

## 微信公众号

扫码关注微信公众号,回复关键字即可在微信中查看相关章节。

<p align="center"> <img src="images/qrcode.jpg"></p>

## 贡献者

欢迎参与贡献和完善内容,贡献方法参考 [CONTRIBUTING](https://github.com/feiskyer/kubernetes-handbook/blob/master/CONTRIBUTING.md)。感谢所有的贡献者,贡献者列表见 [contributors](https://github.com/feiskyer/kubernetes-handbook/graphs/contributors)
3 changes: 1 addition & 2 deletions SUMMARY.md → zh/SUMMARY.md
@@ -1,7 +1,5 @@
# Summary

- [前言](README.md)
- [如何贡献](CONTRIBUTING.md)
- [1. Kubernetes 简介](introduction/index.md)
- [1.1 基本概念](introduction/concepts.md)
- [1.2 Kubernetes 101](introduction/101.md)
Expand Down Expand Up @@ -184,4 +182,5 @@
- [11. 附录](appendix/index.md)
- [生态圈](appendix/ecosystem.md)
- [Play-With-Kubernetes](appendix/play-with-k8s.md)
- [如何贡献](CONTRIBUTING.md)
- [参考文档](appendix/reference.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added zh/images/logo.png
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added zh/images/qrcode.jpg
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes

0 comments on commit 349d625

Please sign in to comment.