diff --git a/Makefile b/Makefile index 6543bdc417..8e27d08956 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ check-headers-file: production-build: check-hugo-versions build check-headers-file ## Build the production site and ensure that noindex headers aren't added -non-production-build: test-examples check-hugo-versions ## Build the non-production site, which adds noindex headers to prevent indexing +non-production-build: check-hugo-versions ## Build the non-production site, which adds noindex headers to prevent indexing hugo --enableGitInfo serve: ## Boot the development server. diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES index 491cd455b2..51732cb349 100644 --- a/OWNERS_ALIASES +++ b/OWNERS_ALIASES @@ -18,6 +18,16 @@ aliases: - chuckha - detiber - dixudx + sig-docs-blog-owners: # Approvers for blog content + - castrojo + - kbarnard10 + - zacharysarah + sig-docs-blog-reviewers: # Reviewers for blog content + - cody-clark + - mrbobbytables + - onlydole + - parispittman + - vonguard sig-docs-de-owners: # Admins for German content - bene2k1 - mkorbi @@ -34,10 +44,12 @@ aliases: - jaredbhatti - jimangel - kbarnard10 + - kbhawkey - makoscafee - mistyhacks - rajakavitha1 - ryanmcginnis + - shavidissa - steveperry-53 - stewart-yu - tengqm @@ -48,6 +60,7 @@ aliases: sig-docs-en-reviews: # PR reviews for English content - jimangel - rajakavitha1 + - sftim - stewart-yu - xiangpengzhao - zhangxiaoyu-zidif @@ -105,21 +118,21 @@ aliases: sig-docs-it-reviews: # PR reviews for Italian content - rlenferink - micheleberardi - sig-docs-ja-owners: # Admins for Japanese content + sig-docs-ja-owners: # Admins for Japanese content - cstoku - nasa9084 - - tnir - zacharysarah - sig-docs-ja-reviews: # PR reviews for Japanese content + sig-docs-ja-reviews: # PR reviews for Japanese content - cstoku + - inductor - makocchi-git - MasayaAoyama - nasa9084 - - tnir sig-docs-ko-owners: # Admins for Korean content - ClaudiaJKang - gochist - ianychoi + - seokho-son - zacharysarah sig-docs-ko-reviews: # PR reviews for Korean content - ClaudiaJKang diff --git a/README-ja.md b/README-ja.md new file mode 100644 index 0000000000..2c69491e2f --- /dev/null +++ b/README-ja.md @@ -0,0 +1,75 @@ +# Kubernetesのドキュメント + +[![Build Status](https://api.travis-ci.org/kubernetes/website.svg?branch=master)](https://travis-ci.org/kubernetes/website) +[![GitHub release](https://img.shields.io/github/release/kubernetes/website.svg)](https://github.com/kubernetes/website/releases/latest) + +ようこそ!このリポジトリには、[KubernetesのWebサイトとドキュメント](https://kubernetes.io/)をビルドするために必要な全アセットが格納されています。貢献に興味を持っていただきありがとうございます! + +## ドキュメントに貢献する + +GitHubの画面右上にある**Fork**ボタンをクリックすると、お使いのGitHubアカウントに紐付いた本リポジトリのコピーが作成され、このコピーのことを*フォーク*と呼びます。フォークリポジトリの中ではお好きなように変更を加えていただいて構いません。加えた変更をこのリポジトリに追加したい任意のタイミングにて、フォークリポジトリからPull Reqeustを作成してください。 + +Pull Requestが作成されると、レビュー担当者が責任を持って明確かつ実用的なフィードバックを返します。 +Pull Requestの所有者は作成者であるため、**ご自身で作成したPull Requestを編集し、フィードバックに対応するのはご自身の役目です。** +また、状況によっては2人以上のレビュアーからフィードバックが返されたり、アサインされていないレビュー担当者からのフィードバックが来ることがある点もご注意ください。 +さらに、特定のケースにおいては、レビュー担当者が[Kubernetes tech reviewer](https://github.com/kubernetes/website/wiki/Tech-reviewers)に対してレビューを依頼することもあります。 +レビュー担当者はタイムリーにフィードバックを提供するために最善を尽くしますが、応答時間は状況に応じて異なる場合があります。 + +Kubernetesのドキュメントへの貢献に関する詳細については以下のページをご覧ください: + +* [貢献のはじめ方](https://kubernetes.io/docs/contribute/start/) +* [ドキュメントの変更をステージする](http://kubernetes.io/docs/contribute/intermediate#view-your-changes-locally) +* [ページテンプレートの使い方](http://kubernetes.io/docs/contribute/style/page-templates/) +* [ドキュメントのスタイルガイド](http://kubernetes.io/docs/contribute/style/style-guide/) +* [Kubernetesドキュメントの翻訳方法](https://kubernetes.io/docs/contribute/localization/) + +## Dockerを使ってローカル環境でWebサイトを動かす + +ローカル環境で本ページを動かすのに推奨される方法は、静的サイトジェネレータの[Hugo](https://gohugo.io)を動かすのに特化した[Docker](https://docker.com)イメージを使うことです。 + +> Windows上で環境を作る場合は[Chocolatey](https://chocolatey.org)を使ってインストール可能な追加のツールが必要になります。 `choco install make` + +> Dockerを使わずに環境を構築したい場合は、[Hugoをローカル環境で動かす](#hugoをローカル環境で動かす)をご覧ください。 + +既に[Dockerが動いている環境](https://www.docker.com/get-started)であれば、以下のコマンドを使って`kubernetes-hugo`イメージをローカルでビルドします: + +```bash +make docker-image +``` + +イメージが作成されたら、以下のコマンドを使ってWebサイトをローカル上で動かすことができます: + +```bash +make docker-serve +``` + +お使いのブラウザにて http://localhost:1313 にアクセスすることでWebサイトが開きます。リポジトリ内のソースファイルに変更を加えると、HugoがWebサイトの内容を更新してブラウザに反映します。 + +## Hugoをローカル環境で動かす + +Hugoのインストール方法については[Hugoの公式ドキュメント](https://gohugo.io/getting-started/installing/)をご覧ください。このとき、[`netlify.toml`](netlify.toml#L9)ファイルに記述されている`HUGO_VERSION`と同じバージョンをインストールするようにしてください。 + +Hugoがインストールできたら、以下のコマンドを使ってWebサイトをローカル上で動かすことができます: + +```bash +make serve +``` + +これで、Hugoのサーバーが1313番ポートを使って開始します。 お使いのブラウザにて http://localhost:1313 にアクセスしてください。リポジトリ内のソースファイルに変更を加えると、HugoがWebサイトの内容を更新してブラウザに反映します。 + +## コミュニティ内での議論、貢献、サポートなどについて + +[コミュニティのページ](http://kubernetes.io/community/)をご覧になることで、Kubernetesコミュニティとの関わり方を学ぶことができます。 + +本プロジェクトのメンテナーには以下の方法で連絡することができます: + +- [Slack](https://kubernetes.slack.com/messages/kubernetes-docs-ja) +- [メーリングリスト](https://groups.google.com/forum/#!forum/kubernetes-sig-docs) + +### 行動規範 + +Kubernetesコミュニティへの参加については、[Kubernetesの行動規範](code-of-conduct.md)によって管理されています。 + +## ありがとうございます! + +Kubernetesはコミュニティの参加によって成長しています。Webサイトおよびドキュメンテーションへの皆さんの貢献に感謝します! diff --git a/README-ko.md b/README-ko.md index 4846b08c97..21cbe8b762 100644 --- a/README-ko.md +++ b/README-ko.md @@ -3,13 +3,13 @@ [![Build Status](https://api.travis-ci.org/kubernetes/website.svg?branch=master)](https://travis-ci.org/kubernetes/website) [![GitHub release](https://img.shields.io/github/release/kubernetes/website.svg)](https://github.com/kubernetes/website/releases/latest) -환영합니다! 이 저장소는 쿠버네티스 웹사이트 및 문서화를 만드는 데 필요로 하는 모든 asset에 대한 공간을 제공합니다. 여러 분이 기여를 원한다는 사실에 매우 기쁩니다! +환영합니다! 이 저장소는 쿠버네티스 웹사이트 및 문서화를 만드는 데 필요로 하는 모든 asset에 대한 공간을 제공합니다. 여러분이 기여를 원한다는 사실에 매우 기쁩니다! ## 문서에 기여하기 -이 저장소에 대한 복제본을 여러분의 GitHub 계정에 생성하기 위해 화면 오른쪽 위 영역에 있는 **Fork** 버튼을 클릭 가능합니 다. 이 복제본은 *fork* 라고 부릅니다. 여러분의 fork에서 원하는 임의의 변경 사항을 만들고, 해당 변경 사항을 보낼 준비가 되었다면, 여러분의 fork로 이동하여 새로운 풀 리퀘스트를 만들어 우리에게 알려주시기 바랍니다. +이 저장소에 대한 복제본을 여러분의 GitHub 계정에 생성하기 위해 화면 오른쪽 위 영역에 있는 **Fork** 버튼을 클릭 가능합니다. 이 복제본은 *fork* 라고 부릅니다. 여러분의 fork에서 원하는 임의의 변경 사항을 만들고, 해당 변경 사항을 보낼 준비가 되었다면, 여러분의 fork로 이동하여 새로운 풀 리퀘스트를 만들어 우리에게 알려주시기 바랍니다. -여러분의 풀 리퀘스트가 생생된 이후에는, 쿠버네티스 리뷰어가 명료하고 실행 가능한 피드백을 제공하는 책임을 담당할 것입니 다. 풀 리퀘스트의 오너로서, **쿠버네티스 리뷰어로부터 제공받은 피드백을 수용하기 위해 풀 리퀘스트를 수정하는 것은 여러분의 책임입니다.** 또한, 참고로 한 명 이상의 쿠버네티스 리뷰어가 여러분에게 피드백을 제공하는 상황에 처하거나, 또는 여러분에게 피드백을 제공하기로 원래 할당된 사람이 아닌 다른 쿠버네티스 리뷰어로부터 피드백을 받는 상황에 처할 수도 있습니다. 뿐만 아니라, 몇몇 상황에서는, 필요에 따라 리뷰어 중 한 명이 [쿠버네티스 기술 리뷰어](https://github.com/kubernetes/website/wiki/Tech-reviewers)로부터의 기술 리뷰를 요청할지도 모릅니다. 리뷰어는 제시간에 피드백을 제공하기 위해 최선을 다할 것이지만, 응답 시간은 상황에 따라 달라질 수도 있습니다. +여러분의 풀 리퀘스트가 생생된 이후에는, 쿠버네티스 리뷰어가 명료하고 실행 가능한 피드백을 제공하는 책임을 담당할 것입니다. 풀 리퀘스트의 오너로서, **쿠버네티스 리뷰어로부터 제공받은 피드백을 수용하기 위해 풀 리퀘스트를 수정하는 것은 여러분의 책임입니다.** 또한, 참고로 한 명 이상의 쿠버네티스 리뷰어가 여러분에게 피드백을 제공하는 상황에 처하거나, 또는 여러분에게 피드백을 제공하기로 원래 할당된 사람이 아닌 다른 쿠버네티스 리뷰어로부터 피드백을 받는 상황에 처할 수도 있습니다. 뿐만 아니라, 몇몇 상황에서는, 필요에 따라 리뷰어 중 한 명이 [쿠버네티스 기술 리뷰어](https://github.com/kubernetes/website/wiki/Tech-reviewers)로부터의 기술 리뷰를 요청할지도 모릅니다. 리뷰어는 제시간에 피드백을 제공하기 위해 최선을 다할 것이지만, 응답 시간은 상황에 따라 달라질 수도 있습니다. 쿠버네티스 문서화에 기여하기와 관련된 보다 자세한 정보는, 다음을 살펴봅니다: @@ -32,7 +32,7 @@ ## 도커를 사용하여 사이트를 로컬에서 실행하기 -쿠버네티스 웹사이트를 로컬에서 실행하기 위한 추천하는 방식은 [Hugo](https://gohugo.io) 정적 사이트 생성기를 포함하는 특 별한 [도커](https://docker.com) 이미지를 실행하는 것입니다. +쿠버네티스 웹사이트를 로컬에서 실행하기 위한 추천하는 방식은 [Hugo](https://gohugo.io) 정적 사이트 생성기를 포함하는 특별한 [도커](https://docker.com) 이미지를 실행하는 것입니다. > Windows에서 실행하는 경우, [Chocolatey](https://chocolatey.org)로 설치할 수 있는 명명 추가 도구를 필요로 할 것입니다. `choco install make` @@ -50,7 +50,7 @@ make docker-image make docker-serve ``` -브라우저에서 http://localhost:1313 를 열어 사이트를 살펴봅니다. 소스 파일에 변경 사항이 있을 때, Hugo는 사이트를 업데이 트하고 브라우저를 강제로 새로고침합니다. +브라우저에서 http://localhost:1313 를 열어 사이트를 살펴봅니다. 소스 파일에 변경 사항이 있을 때, Hugo는 사이트를 업데이트하고 브라우저를 강제로 새로고침합니다. ## Hugo를 사용한 로컬 사이트 실행하기 @@ -62,7 +62,7 @@ Hugo가 설치되었을 때 로컬에서 사이트를 실행하기 위해 (다 make serve ``` -이를 통해 로컬 Hugo 서버를 1313번 포트에 시작합니다. 브라우저에서 http://localhost:1313 를 열어 사이트를 살펴봅니다. 소 스 파일에 변경 사항이 있을 때, Hugo는 사이트를 업데이트하고 브라우저를 강제로 새로고침합니다. +이를 통해 로컬 Hugo 서버를 1313번 포트에 시작합니다. 브라우저에서 http://localhost:1313 를 열어 사이트를 살펴봅니다. 소스 파일에 변경 사항이 있을 때, Hugo는 사이트를 업데이트하고 브라우저를 강제로 새로고침합니다. ## 감사합니다! diff --git a/README-pt.md b/README-pt.md index 5f726d39b4..4d5b6ad7e9 100644 --- a/README-pt.md +++ b/README-pt.md @@ -19,16 +19,10 @@ Para mais informações sobre como contribuir com a documentação do Kubernetes * [Guia de Estilo da Documentação](http://kubernetes.io/docs/contribute/style/style-guide/) * [Localizando documentação do Kubernetes](https://kubernetes.io/docs/contribute/localization/) -## Documentação do Kubernetes Localizando o `README.md` +Você pode contactar os mantenedores da localização em Português em: -### coreano - -Veja a tradução de `README.md` e mais orientações sobre detalhes para contribuidores coreanos na página [README coreano](README-ko.md). - -Você pode alcançar os mantenedores da localização coreana em: - -* June Yi ([GitHub - @gochist](https://github.com/gochist)) -* [Slack channel](https://kubernetes.slack.com/messages/kubernetes-docs-ko) +* Felipe ([GitHub - @femrtnz](https://github.com/femrtnz)) +* [Slack channel](https://kubernetes.slack.com/messages/kubernetes-docs-pt) ## Executando o site localmente usando o Docker @@ -68,7 +62,7 @@ Isso iniciará o servidor Hugo local na porta 1313. Abra o navegador para http:/ Aprenda a se envolver com a comunidade do Kubernetes na [página da comunidade](http://kubernetes.io/community/). -Você pode alcançar os mantenedores deste projeto em: +Você pode falar com os mantenedores deste projeto: - [Slack](https://kubernetes.slack.com/messages/sig-docs) - [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs) @@ -79,4 +73,4 @@ A participação na comunidade Kubernetes é regida pelo [Código de Conduta da ## Obrigado! -A Kubernetes prospera com a participação da comunidade e nós realmente apreciamos suas contribuições para o nosso site e nossa documentação! +O Kubernetes conta com a participação da comunidade e nós realmente agradecemos suas contribuições para o nosso site e nossa documentação! diff --git a/README.md b/README.md index 59f1eedd2d..4bb7cc7411 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ For more information about contributing to the Kubernetes documentation, see: |[German README](README-de.md)|[Portuguese README](README-pt.md)| |[Hindi README](README-hi.md)|[Spanish README](README-es.md)| |[Indonesian README](README-id.md)|[Chinese README](README-zh.md)| +|[Japanese README](README-ja.md)|| ||| ## Running the website locally using Docker @@ -52,7 +53,7 @@ Open up your browser to http://localhost:1313 to view the website. As you make c ## Running the website locally using Hugo -See the [official Hugo documentation](https://gohugo.io/getting-started/installing/) for Hugo installation instructions. Make sure to install the Hugo version specified by the `HUGO_VERSION` environment variable in the [`netlify.toml`](netlify.toml#L9) file. +See the [official Hugo documentation](https://gohugo.io/getting-started/installing/) for Hugo installation instructions. Make sure to install the Hugo extended version specified by the `HUGO_VERSION` environment variable in the [`netlify.toml`](netlify.toml#L9) file. To run the website locally when you have Hugo installed: diff --git a/assets/sass/_base.sass b/assets/sass/_base.sass index e631a0049c..a4571f0914 100644 --- a/assets/sass/_base.sass +++ b/assets/sass/_base.sass @@ -1125,6 +1125,16 @@ $feature-box-div-margin-bottom: 40px #vendorStrip display: none + // Add logo to CNCF section + section#cncf + padding-top: 60px + padding-bottom: 140px + background-image: url(/images/cncf-color.png) + background-position: center 100px + background-repeat: no-repeat + background-size: 300px + + // OCEAN NODES #oceanNodes @@ -1174,7 +1184,7 @@ $feature-box-div-margin-bottom: 40px position: absolute top: 50% left: 75% - width: 525px + width: 575px padding-right: 80px transform: translate(-50%, -50%) color: white @@ -1269,15 +1279,6 @@ $feature-box-div-margin-bottom: 40px &:hover border-color: white -// CNCF -#cncf - padding-top: 60px - padding-bottom: 140px - background-image: url(/images/cncf-color.png) - background-position: center 100px - background-repeat: no-repeat - background-size: 300px - // KubeWeekly #kubeweekly background-color: $light-grey diff --git a/config.toml b/config.toml index 9be2d3ffa7..1daf9e4274 100644 --- a/config.toml +++ b/config.toml @@ -24,7 +24,9 @@ pygmentsStyle = "emacs" enableGitInfo = true # Norwegian ("no") is sometimes but not currently used for testing. -disableLanguages = ["no"] +# Hindi is disabled because it's currently in development. +# Italian is disabled until it meets minimum standards for quality. +disableLanguages = ["hi", "it", "no"] [blackfriday] hrefTargetBlank = true @@ -252,6 +254,10 @@ language_alternatives = ["en"] [languages.hi] title = "Kubernetes" description = "Production-Grade Container Orchestration" -languageName ="Hindi" +languageName = "Hindi" weight = 11 -contentDir = "content/hi" \ No newline at end of file +contentDir = "content/hi" + +[languages.hi.params] +time_format_blog = "01.02.2006" +language_alternatives = ["en"] diff --git a/content/de/_index.html b/content/de/_index.html index 90c04a2185..be67e2a7de 100644 --- a/content/de/_index.html +++ b/content/de/_index.html @@ -44,12 +44,12 @@ Kubernetes ist Open Source und bietet Ihnen die Freiheit, die Infrastruktur vor


- KubeCon vom 20-23. Mai 2019 in Barcelona + KubeCon vom 18-21. November 2019 in San Diego



- KubeCon vom 24-26. Juni 2019 in Shanghai + KubeCon vom 30 März-2 Apr. 2020 in Amsterdam
diff --git a/content/de/docs/concepts/overview/what-is-kubernetes.md b/content/de/docs/concepts/overview/what-is-kubernetes.md index e6a8422f9d..30090a24a1 100644 --- a/content/de/docs/concepts/overview/what-is-kubernetes.md +++ b/content/de/docs/concepts/overview/what-is-kubernetes.md @@ -51,7 +51,7 @@ für Managementtools zu bieten, den Status von Kontrollpunkten zu ermitteln. Darüber hinaus basiert die [Kubernetes-Steuerungsebene](/docs/concepts/overview/components/) auf den gleichen APIs, die Entwicklern und Anwendern zur Verfügung stehen. Benutzer können ihre eigenen Controller, wie z.B. [Scheduler](https://github.com/kubernetes/community/blob/{{< param "githubbranch" >}}/contributors/devel/scheduler.md), mit -ihren [eigenen APIs](](/docs/concepts/api-extension/custom-resources/) schreiben, die von einem +ihren [eigenen APIs](/docs/concepts/api-extension/custom-resources/) schreiben, die von einem universellen [Kommandozeilen-Tool](/docs/user-guide/kubectl-overview/) angesprochen werden können. Dieses [Design](https://git.k8s.io/community/contributors/design-proposals/architecture/architecture.md) hat es einer Reihe anderer Systeme ermöglicht, auf Kubernetes aufzubauen. @@ -155,7 +155,7 @@ Zusammenfassung der Container-Vorteile: ## Was bedeutet Kubernetes? K8s? -Der Name **Kubernetes** stammt aus dem Griechischen, beteutet *Steuermann* oder +Der Name **Kubernetes** stammt aus dem Griechischen, bedeutet *Steuermann* oder *Pilot*, und ist der Ursprung von *Gouverneur* und [cybernetic](http://www.etymonline.com/index.php?term=cybernetics). *K8s* ist eine Abkürzung, die durch Ersetzen der 8 Buchstaben "ubernete" mit "8" abgeleitet wird. diff --git a/content/de/docs/reference/kubectl/cheatsheet.md b/content/de/docs/reference/kubectl/cheatsheet.md index a3968a213b..d30084c90f 100644 --- a/content/de/docs/reference/kubectl/cheatsheet.md +++ b/content/de/docs/reference/kubectl/cheatsheet.md @@ -145,7 +145,7 @@ kubectl get services --sort-by=.metadata.name # Listen Sie Dienste nach Namen so kubectl get pods --sort-by='.status.containerStatuses[0].restartCount' # Erhalten Sie die Versionsbezeichnung aller Pods mit der Bezeichnung app=cassandra -kubectl get pods --selector=app=cassandra rc -o \ +kubectl get pods --selector=app=cassandra -o \ jsonpath='{.items[*].metadata.labels.version}' # Alle Worker-Knoten abrufen (verwenden Sie einen Selektor, um Ergebnisse auszuschließen, diff --git a/content/de/docs/tutorials/kubernetes-basics/scale/scale-intro.html b/content/de/docs/tutorials/kubernetes-basics/scale/scale-intro.html index e4e4e9e418..b52b30812b 100644 --- a/content/de/docs/tutorials/kubernetes-basics/scale/scale-intro.html +++ b/content/de/docs/tutorials/kubernetes-basics/scale/scale-intro.html @@ -61,11 +61,11 @@ weight: 10