You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,14 +34,78 @@ Anyone can write a blog post and submit it for review.
34
34
-->
35
35
## Kubernetes 博客
36
36
37
-
Kubernetes 博客用于项目发布新功能特性、社区报告以及其他一些可能对整个社区
38
-
很重要的新闻。
37
+
Kubernetes 博客用于项目发布新功能特性、
38
+
社区报告以及其他一些可能对整个社区很重要的新闻。
39
39
其读者包括最终用户和开发人员。
40
-
大多数博客的内容是关于核心项目中正在发生的事情,不过我们也鼓励你提交一些
41
-
关于生态系统中其他地方发生的事情的博客。
40
+
大多数博客的内容是关于核心项目中正在发生的事情,
41
+
不过我们也鼓励你提交一些有关生态系统中其他时事的博客。
42
42
43
43
任何人都可以撰写博客并提交评阅。
44
44
45
+
<!--
46
+
### Submit a Post
47
+
48
+
Blog posts should not be commercial in nature and should consist of original content that applies broadly to the Kubernetes community.
49
+
Appropriate blog content includes:
50
+
51
+
- New Kubernetes capabilities
52
+
- Kubernetes projects updates
53
+
- Updates from Special Interest Groups
54
+
- Tutorials and walkthroughs
55
+
- Thought leadership around Kubernetes
56
+
- Kubernetes Partner OSS integration
57
+
- **Original content only**
58
+
-->
59
+
### 提交博文
60
+
61
+
博文不应该是商业性质的,应该包含广泛适用于 Kubernetes 社区的原创内容。
62
+
合适的博客内容包括:
63
+
64
+
- Kubernetes 新能力
65
+
- Kubernetes 项目更新信息
66
+
- 来自特别兴趣小组(Special Interest Groups, SIG)的更新信息
67
+
- 教程和演练
68
+
- 有关 Kubernetes 的纲领性理念
69
+
- Kubernetes 合作伙伴 OSS 集成信息
70
+
-**仅限原创内容**
71
+
72
+
<!--
73
+
Unsuitable content includes:
74
+
75
+
- Vendor product pitches
76
+
- Partner updates without an integration and customer story
77
+
- Syndicated posts (language translations ok)
78
+
-->
79
+
80
+
不合适的博客内容包括:
81
+
82
+
- 供应商产品推介
83
+
- 不含集成信息和客户故事的合作伙伴更新信息
84
+
- 已发表的博文(可刊登博文译稿)
85
+
86
+
<!--
87
+
To submit a blog post, follow these steps:
88
+
89
+
1. [Sign the CLA](https://kubernetes.io/docs/contribute/start/#sign-the-cla) if you have not yet done so.
90
+
1. Have a look at the Markdown format for existing blog posts in the [website repository](https://github.com/kubernetes/website/tree/master/content/en/blog/_posts).
91
+
1. Write out your blog post in a text editor of your choice.
92
+
1. On the same link from step 2, click the Create new file button. Paste your content into the editor. Name the file to match the proposed title of the blog post, but don’t put the date in the file name. The blog reviewers will work with you on the final file name and the date the blog will be published.
93
+
1. When you save the file, GitHub will walk you through the pull request process.
94
+
1. A blog post reviewer will review your submission and work with you on feedback and final details. When the blog post is approved, the blog will be scheduled for publication.
- The components of Kubernetes are purposely modular, so tools that use existing integration points like CNI and CSI are on topic.
88
152
- Posts about other CNCF projects may or may not be on topic. We recommend asking the blog team before submitting a draft.
89
153
- Many CNCF projects have their own blog. These are often a better choice for posts. There are times of major feature or milestone for a CNCF project that users would be interested in reading on the Kubernetes blog.
154
+
- Blog posts about contributing to the Kubernetes project should be in the [Kubernetes Contributors site](https://kubernetes.dev)
- [Open a pull request](/docs/contribute/new-content/open-a-pr/#fork-the-repo) with a new blog post. New blog posts go under the [`content/en/blog/_posts`](https://github.com/kubernetes/website/tree/main/content/en/blog/_posts) directory.
@@ -152,7 +217,7 @@ SIG Docs [博客子项目](https://github.com/kubernetes/community/tree/master/s
152
217
- Do **not** include dots in the filename. A name like `2020-01-01-whats-new-in-1.19.md` causes failures during a build.
@@ -198,6 +263,30 @@ SIG Docs [博客子项目](https://github.com/kubernetes/community/tree/master/s
198
263
- 博客团队会对 PR 内容进行评阅,为你提供一些评语以便修订。
199
264
之后,机器人会将你的博文合并并发表。
200
265
266
+
<!--
267
+
- If the content of the blog post contains only content that is not expected to require updates to stay accurate for the reader, it can be marked as evergreen and exempted from the automatic warning about outdated content added to blog posts older than one year.
268
+
- To mark a blog post as evergreen, add this to the front matter:
269
+
270
+
```yaml
271
+
evergreen: true
272
+
```
273
+
- Examples of content that should not be marked evergreen:
274
+
- **Tutorials** that only apply to specific releases or versions and not all future versions
275
+
- References to pre-GA APIs or features
276
+
-->
277
+
278
+
- 如果博文的内容仅包含预期无需更新就能对读者保持精准的内容,
279
+
则可以将这篇博文标记为长期有效(evergreen),
280
+
且免除添加博文发表一年后内容过期的自动警告。
281
+
- 要将一篇博文标记为长期有效,请在引言部分添加以下标记:
282
+
283
+
```yaml
284
+
evergreen: true
285
+
```
286
+
- 不应标记为长期有效的内容示例:
287
+
- 仅适用于特定发行版或版本而不是所有未来版本的**教程**
288
+
- 对非正式发行(Pre-GA)API 或功能特性的引用
289
+
201
290
<!--
202
291
## Submit a case study
203
292
@@ -212,13 +301,11 @@ Refer to the [case study guidelines](https://github.com/cncf/foundation/blob/mas
0 commit comments