506 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			TOML
		
	
	
	
			
		
		
	
	
			506 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			TOML
		
	
	
	
baseURL = "https://kubernetes.io"
 | 
						||
title = "Kubernetes"
 | 
						||
 | 
						||
# Hugo allows theme composition (and inheritance). The precedence is from left to right.
 | 
						||
theme = ["docsy"]
 | 
						||
 | 
						||
# Language settings
 | 
						||
contentDir = "content/en"
 | 
						||
defaultContentLanguage = "en"
 | 
						||
defaultContentLanguageInSubdir = false
 | 
						||
enableRobotsTXT = true
 | 
						||
disableBrowserError = true
 | 
						||
 | 
						||
disableKinds = ["taxonomy", "taxonomyTerm"]
 | 
						||
 | 
						||
ignoreFiles = [ "(?:^|/)OWNERS$", "README[-]+[a-z]*\\.md", "^node_modules$", "content/en/docs/doc-contributor-tools" ]
 | 
						||
 | 
						||
timeout = 3000
 | 
						||
 | 
						||
# Highlighting config.
 | 
						||
pygmentsCodeFences = true
 | 
						||
pygmentsUseClasses = false
 | 
						||
# Use the new Chroma Go highlighter in Hugo.
 | 
						||
pygmentsUseClassic = false
 | 
						||
#pygmentsOptions = "linenos=table"
 | 
						||
# See https://help.farbox.com/pygments.html
 | 
						||
pygmentsStyle = "emacs"
 | 
						||
 | 
						||
# Enable Git variables like commit, lastmod
 | 
						||
enableGitInfo = true
 | 
						||
 | 
						||
# Norwegian ("no") is sometimes but not currently used for testing.
 | 
						||
# Hindi is disabled because it's currently in development.
 | 
						||
disableLanguages = ["hi", "no"]
 | 
						||
 | 
						||
[caches]
 | 
						||
 [caches.assets]
 | 
						||
  dir = ":cacheDir/_gen"
 | 
						||
  maxAge = -1
 | 
						||
 [caches.getcsv]
 | 
						||
  dir = ":cacheDir/:project"
 | 
						||
  maxAge = "60s"
 | 
						||
 [caches.getjson]
 | 
						||
  dir = ":cacheDir/:project"
 | 
						||
  maxAge = "60s"
 | 
						||
 [caches.images]
 | 
						||
  dir = ":cacheDir/_images"
 | 
						||
  maxAge = -1
 | 
						||
 [caches.modules]
 | 
						||
  dir = ":cacheDir/modules"
 | 
						||
  maxAge = -1
 | 
						||
 | 
						||
[markup]
 | 
						||
 [markup.goldmark]
 | 
						||
   [markup.goldmark.extensions]
 | 
						||
     definitionList = true
 | 
						||
     table = true
 | 
						||
     typographer = false
 | 
						||
   [markup.goldmark.parser]
 | 
						||
     attribute = true
 | 
						||
     autoHeadingID = true
 | 
						||
     autoHeadingIDType = "blackfriday"
 | 
						||
   [markup.goldmark.renderer]
 | 
						||
     unsafe = true
 | 
						||
  [markup.highlight]
 | 
						||
    codeFences = true
 | 
						||
    guessSyntax = false
 | 
						||
    hl_Lines = ""
 | 
						||
    lineNoStart = 1
 | 
						||
    lineNos = false
 | 
						||
    lineNumbersInTable = true
 | 
						||
    noClasses = true
 | 
						||
    style = "emacs"
 | 
						||
    tabWidth = 4
 | 
						||
  [markup.tableOfContents]
 | 
						||
    endLevel = 3
 | 
						||
    ordered = false
 | 
						||
    startLevel = 2
 | 
						||
 | 
						||
[frontmatter]
 | 
						||
date = ["date", ":filename", "publishDate", "lastmod"]
 | 
						||
 | 
						||
[permalinks]
 | 
						||
blog = "/:section/:year/:month/:day/:slug/"
 | 
						||
 | 
						||
[sitemap]
 | 
						||
  filename = "sitemap.xml"
 | 
						||
  priority = 0.75
 | 
						||
 | 
						||
# Be explicit about the output formats. We (currently) only want an RSS feed for the home page.
 | 
						||
[outputs]
 | 
						||
home = [ "HTML", "RSS", "HEADERS" ]
 | 
						||
page = [ "HTML"]
 | 
						||
section = [ "HTML", "print" ]
 | 
						||
 | 
						||
# Add a "text/netlify" media type for auto-generating the _headers file
 | 
						||
[mediaTypes]
 | 
						||
[mediaTypes."text/netlify"]
 | 
						||
delimiter = ""
 | 
						||
 | 
						||
[outputFormats]
 | 
						||
[outputFormats.RSS]
 | 
						||
baseName = "feed"
 | 
						||
 | 
						||
# _headers file output (uses the template at layouts/index.headers)
 | 
						||
[outputFormats.HEADERS]
 | 
						||
mediatype = "text/netlify"
 | 
						||
baseName = "_headers"
 | 
						||
isPlainText = true
 | 
						||
notAlternative = true
 | 
						||
 | 
						||
# Image processing configuration.
 | 
						||
[imaging]
 | 
						||
resampleFilter = "CatmullRom"
 | 
						||
quality = 75
 | 
						||
anchor = "smart"
 | 
						||
 | 
						||
[services]
 | 
						||
[services.googleAnalytics]
 | 
						||
# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
 | 
						||
id = "UA-00000000-0"
 | 
						||
 | 
						||
[params]
 | 
						||
copyright_k8s = "The Kubernetes Authors"
 | 
						||
copyright_linux = "Copyright © 2020 The Linux Foundation ®."
 | 
						||
 | 
						||
# privacy_policy = "https://policies.google.com/privacy"
 | 
						||
 | 
						||
# First one is picked as the Twitter card image if not set on page.
 | 
						||
# images = ["images/project-illustration.png"]
 | 
						||
 | 
						||
# Menu title if your navbar has a versions selector to access old versions of your site.
 | 
						||
# This menu appears only if you have at least one [params.versions] set.
 | 
						||
version_menu = "Versions"
 | 
						||
 | 
						||
time_format_blog = "Monday, January 02, 2006"
 | 
						||
time_format_default = "January 02, 2006 at 3:04 PM PST"
 | 
						||
 | 
						||
description = "Production-Grade Container Orchestration"
 | 
						||
showedit = true
 | 
						||
 | 
						||
latest = "v1.24"
 | 
						||
 | 
						||
fullversion = "v1.24.0"
 | 
						||
version = "v1.24"
 | 
						||
githubbranch = "main"
 | 
						||
docsbranch = "main"
 | 
						||
deprecated = false
 | 
						||
currentUrl = "https://kubernetes.io/docs/home/"
 | 
						||
nextUrl = "https://kubernetes-io-vnext-staging.netlify.com/"
 | 
						||
 | 
						||
# See codenew shortcode
 | 
						||
githubWebsiteRaw = "raw.githubusercontent.com/kubernetes/website"
 | 
						||
 | 
						||
# GitHub repository link for editing a page and opening issues.
 | 
						||
github_repo = "https://github.com/kubernetes/website"
 | 
						||
 | 
						||
# Searching
 | 
						||
k8s_search = true
 | 
						||
 | 
						||
# The following search parameters are specific to Docsy's implementation. Kubernetes implementes its own search-related partials and scripts.
 | 
						||
 | 
						||
# Google Custom Search Engine ID. Remove or comment out to disable search.
 | 
						||
#gcs_engine_id = "011737558837375720776:fsdu1nryfng"
 | 
						||
 | 
						||
# Enable Algolia DocSearch
 | 
						||
algolia_docsearch = false
 | 
						||
 | 
						||
# Enable Lunr.js offline search
 | 
						||
offlineSearch = false
 | 
						||
 | 
						||
[params.pushAssets]
 | 
						||
css = [
 | 
						||
  "callouts",
 | 
						||
  "styles"
 | 
						||
]
 | 
						||
js = [
 | 
						||
  "script"
 | 
						||
]
 | 
						||
 | 
						||
[[params.versions]]
 | 
						||
fullversion = "v1.24.0"
 | 
						||
version = "v1.24"
 | 
						||
githubbranch = "v1.24.0"
 | 
						||
docsbranch = "main"
 | 
						||
url = "https://kubernetes.io"
 | 
						||
 | 
						||
[[params.versions]]
 | 
						||
fullversion = "v1.23.6"
 | 
						||
version = "v1.23"
 | 
						||
githubbranch = "v1.23.6"
 | 
						||
docsbranch = "release-1.23"
 | 
						||
url = "https://v1-23.docs.kubernetes.io"
 | 
						||
 | 
						||
[[params.versions]]
 | 
						||
fullversion = "v1.22.9"
 | 
						||
version = "v1.22"
 | 
						||
githubbranch = "v1.22.9"
 | 
						||
docsbranch = "release-1.22"
 | 
						||
url = "https://v1-22.docs.kubernetes.io"
 | 
						||
 | 
						||
[[params.versions]]
 | 
						||
fullversion = "v1.21.12"
 | 
						||
version = "v1.21"
 | 
						||
githubbranch = "v1.21.12"
 | 
						||
docsbranch = "release-1.21"
 | 
						||
url = "https://v1-21.docs.kubernetes.io"
 | 
						||
 | 
						||
[[params.versions]]
 | 
						||
fullversion = "v1.20.15"
 | 
						||
version = "v1.20"
 | 
						||
githubbranch = "v1.20.15"
 | 
						||
docsbranch = "release-1.20"
 | 
						||
url = "https://v1-20.docs.kubernetes.io"
 | 
						||
 | 
						||
# User interface configuration
 | 
						||
[params.ui]
 | 
						||
# Enable to show the side bar menu in its compact state.
 | 
						||
sidebar_menu_compact = false
 | 
						||
# Show expand/collapse icon for sidebar sections.
 | 
						||
sidebar_menu_foldable = true
 | 
						||
# https://github.com/gohugoio/hugo/issues/8918#issuecomment-903314696
 | 
						||
sidebar_cache_limit = 1
 | 
						||
# Set to true to disable breadcrumb navigation.
 | 
						||
breadcrumb_disable = false
 | 
						||
# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
 | 
						||
sidebar_search_disable = false
 | 
						||
# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar
 | 
						||
navbar_logo = true
 | 
						||
# Set to true to disable the About link in the site footer
 | 
						||
footer_about_disable = false
 | 
						||
 | 
						||
# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
 | 
						||
# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
 | 
						||
# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
 | 
						||
# add "hide_feedback: true" to the page's front matter.
 | 
						||
[params.ui.feedback]
 | 
						||
enable = true
 | 
						||
# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
 | 
						||
yes = 'Glad to hear it! Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.'
 | 
						||
no = 'Sorry to hear that. Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.'
 | 
						||
 | 
						||
[params.links]
 | 
						||
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
 | 
						||
[[params.links.user]]
 | 
						||
	name = "User mailing list"
 | 
						||
	url = "https://discuss.kubernetes.io"
 | 
						||
	icon = "fa fa-envelope"
 | 
						||
	desc = "Discussion and help from your fellow users"
 | 
						||
 | 
						||
[[params.links.user]]
 | 
						||
	name = "Twitter"
 | 
						||
	url = "https://twitter.com/kubernetesio"
 | 
						||
	icon = "fab fa-twitter"
 | 
						||
	desc = "Follow us on Twitter to get the latest news!"
 | 
						||
 | 
						||
[[params.links.user]]
 | 
						||
	name = "Calendar"
 | 
						||
	url = "https://calendar.google.com/calendar/embed?src=calendar%40kubernetes.io"
 | 
						||
	icon = "fas fa-calendar-alt"
 | 
						||
	desc = "Google Calendar for Kubernetes"
 | 
						||
 | 
						||
[[params.links.user]]
 | 
						||
	name = "Youtube"
 | 
						||
	url = "https://youtube.com/kubernetescommunity"
 | 
						||
	icon = "fab fa-youtube"
 | 
						||
	desc = "Youtube community videos"
 | 
						||
 | 
						||
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
 | 
						||
[[params.links.developer]]
 | 
						||
	name = "GitHub"
 | 
						||
	url = "https://github.com/kubernetes/kubernetes"
 | 
						||
	icon = "fab fa-github"
 | 
						||
	desc = "Development takes place here!"
 | 
						||
 | 
						||
[[params.links.developer]]
 | 
						||
	name = "Slack"
 | 
						||
	url = "https://slack.k8s.io"
 | 
						||
	icon = "fab fa-slack"
 | 
						||
	desc = "Chat with other project developers"
 | 
						||
 | 
						||
[[params.links.developer]]
 | 
						||
	name = "Contribute"
 | 
						||
	url = "https://git.k8s.io/community/contributors/guide"
 | 
						||
	icon = "fas fa-edit"
 | 
						||
	desc = "Contribute to the Kubernetes website"
 | 
						||
 | 
						||
[[params.links.developer]]
 | 
						||
	name = "Stack Overflow"
 | 
						||
	url = "https://stackoverflow.com/questions/tagged/kubernetes"
 | 
						||
	icon = "fab fa-stack-overflow"
 | 
						||
	desc = "Practical questions and curated answers"
 | 
						||
 | 
						||
# Language definitions.
 | 
						||
 | 
						||
[languages]
 | 
						||
[languages.en]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Production-Grade Container Orchestration"
 | 
						||
languageName = "English"
 | 
						||
# Weight used for sorting.
 | 
						||
weight = 1
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.zh-cn]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "生产级别的容器编排系统"
 | 
						||
languageName = "中文 (Chinese)"
 | 
						||
languageNameLatinScript = "Chinese"
 | 
						||
weight = 2
 | 
						||
contentDir = "content/zh-cn"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.zh-cn.params]
 | 
						||
time_format_blog = "2006.01.02"
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.ko]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "운영 수준의 컨테이너 오케스트레이션"
 | 
						||
languageName = "한국어 (Korean)"
 | 
						||
languageNameLatinScript = "Korean"
 | 
						||
weight = 3
 | 
						||
contentDir = "content/ko"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.ko.params]
 | 
						||
time_format_blog = "2006.01.02"
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.ja]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "プロダクショングレードのコンテナ管理基盤"
 | 
						||
languageName = "日本語 (Japanese)"
 | 
						||
languageNameLatinScript = "Japanese"
 | 
						||
weight = 4
 | 
						||
contentDir = "content/ja"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.ja.params]
 | 
						||
time_format_blog = "2006.01.02"
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.fr]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Solution professionnelle d’orchestration de conteneurs"
 | 
						||
languageName = "Français (French)"
 | 
						||
languageNameLatinScript = "Français"
 | 
						||
weight = 5
 | 
						||
contentDir = "content/fr"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.fr.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.it]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Orchestrazione di Container in produzione"
 | 
						||
languageName = "Italiano (Italian)"
 | 
						||
languageNameLatinScript = "Italiano"
 | 
						||
weight = 6
 | 
						||
contentDir = "content/it"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.it.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.no]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Production-Grade Container Orchestration"
 | 
						||
languageName = "Norsk (Norwegian)"
 | 
						||
languageNameLatinScript = "Norsk"
 | 
						||
weight = 7
 | 
						||
contentDir = "content/no"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.no.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.de]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Produktionsreife Container-Orchestrierung"
 | 
						||
languageName = "Deutsch (German)"
 | 
						||
languageNameLatinScript = "Deutsch"
 | 
						||
weight = 8
 | 
						||
contentDir = "content/de"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.de.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.es]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Orquestación de contenedores para producción"
 | 
						||
languageName = "Español (Spanish)"
 | 
						||
languageNameLatinScript = "Español"
 | 
						||
weight = 9
 | 
						||
contentDir = "content/es"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.es.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.pt-br]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Orquestração de contêineres em nível de produção"
 | 
						||
languageName = "Português (Portuguese)"
 | 
						||
languageNameLatinScript = "Português"
 | 
						||
weight = 10
 | 
						||
 | 
						||
contentDir = "content/pt-br"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.pt-br.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.id]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Orkestrasi Kontainer dengan Skala Produksi"
 | 
						||
languageName ="Bahasa Indonesia"
 | 
						||
languageNameLatinScript = "Bahasa Indonesia"
 | 
						||
weight = 11
 | 
						||
contentDir = "content/id"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.id.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.hi]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Production-Grade Container Orchestration"
 | 
						||
languageName = "हिन्दी (Hindi)"
 | 
						||
languageNameLatinScript = "Hindi"
 | 
						||
weight = 12
 | 
						||
contentDir = "content/hi"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.hi.params]
 | 
						||
time_format_blog = "01.02.2006"
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.vi]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Giải pháp điều phối container trong môi trường production"
 | 
						||
languageName = "Tiếng Việt (Vietnamese)"
 | 
						||
languageNameLatinScript = "Tiếng Việt"
 | 
						||
contentDir = "content/vi"
 | 
						||
weight = 13
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.ru]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Первоклассная оркестрация контейнеров"
 | 
						||
languageName = "Русский (Russian)"
 | 
						||
languageNameLatinScript = "Russian"
 | 
						||
weight = 14
 | 
						||
contentDir = "content/ru"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.ru.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.pl]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Produkcyjny system zarządzania kontenerami"
 | 
						||
languageName = "Polski (Polish)"
 | 
						||
languageNameLatinScript = "Polski"
 | 
						||
weight = 15
 | 
						||
contentDir = "content/pl"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.pl.params]
 | 
						||
time_format_blog = "01.02.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 | 
						||
 | 
						||
[languages.uk]
 | 
						||
title = "Kubernetes"
 | 
						||
description = "Довершена система оркестрації контейнерів"
 | 
						||
languageName = "Українська (Ukrainian)"
 | 
						||
languageNameLatinScript = "Ukrainian"
 | 
						||
weight = 16
 | 
						||
contentDir = "content/uk"
 | 
						||
languagedirection = "ltr"
 | 
						||
 | 
						||
[languages.uk.params]
 | 
						||
time_format_blog = "02.01.2006"
 | 
						||
# A list of language codes to look for untranslated content, ordered from left to right.
 | 
						||
language_alternatives = ["en"]
 |