changes
This commit is contained in:
parent
4f742dbbb6
commit
2b6074e8ed
|
@ -6,8 +6,10 @@ linkTitle: "Reference"
|
||||||
main_menu: true
|
main_menu: true
|
||||||
weight: 70
|
weight: 70
|
||||||
content_type: concept
|
content_type: concept
|
||||||
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
<!-- overview -->
|
<!-- overview -->
|
||||||
|
|
||||||
This section of the Kubernetes documentation contains references.
|
This section of the Kubernetes documentation contains references.
|
||||||
|
@ -16,11 +18,17 @@ This section of the Kubernetes documentation contains references.
|
||||||
|
|
||||||
<!-- body -->
|
<!-- body -->
|
||||||
|
|
||||||
## API Reference
|
## Standardized Glossary
|
||||||
|
|
||||||
|
* [Glossary](/docs/reference/glossary/) - a comprehensive, standardized list of Kubernetes terminology
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* [Kubernetes API Reference](/docs/reference/kubernetes-api/)
|
* [Kubernetes API Reference](/docs/reference/kubernetes-api/)
|
||||||
* [One-page API Reference for Kubernetes {{< param "version" >}}](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/)
|
* [One-page API Reference for Kubernetes {{< param "version" >}}](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/)
|
||||||
* [Using The Kubernetes API](/docs/reference/using-api/) - overview of the API for Kubernetes.
|
* [Using The Kubernetes API](/docs/reference/using-api/) - overview of the API for Kubernetes.
|
||||||
|
* [API access control](/docs/reference/access-authn-authz/) - details on how Kubernetes controls API access
|
||||||
|
* [Well-Known Labels, Annotations and Taints](/docs/reference/kubernetes-api/labels-annotations-taints/)
|
||||||
|
|
||||||
## API Client Libraries
|
## API Client Libraries
|
||||||
|
|
||||||
|
@ -32,22 +40,28 @@ client libraries:
|
||||||
- [Kubernetes Python client library](https://github.com/kubernetes-client/python)
|
- [Kubernetes Python client library](https://github.com/kubernetes-client/python)
|
||||||
- [Kubernetes Java client library](https://github.com/kubernetes-client/java)
|
- [Kubernetes Java client library](https://github.com/kubernetes-client/java)
|
||||||
- [Kubernetes JavaScript client library](https://github.com/kubernetes-client/javascript)
|
- [Kubernetes JavaScript client library](https://github.com/kubernetes-client/javascript)
|
||||||
|
- [Kubernetes Dotnet client library](https://github.com/kubernetes-client/csharp)
|
||||||
|
- [Kubernetes Haskell Client library](https://github.com/kubernetes-client/haskell)
|
||||||
|
|
||||||
## CLI Reference
|
## CLI
|
||||||
|
|
||||||
* [kubectl](/docs/reference/kubectl/overview/) - Main CLI tool for running commands and managing Kubernetes clusters.
|
* [kubectl](/docs/reference/kubectl/overview/) - Main CLI tool for running commands and managing Kubernetes clusters.
|
||||||
* [JSONPath](/docs/reference/kubectl/jsonpath/) - Syntax guide for using [JSONPath expressions](https://goessner.net/articles/JsonPath/) with kubectl.
|
* [JSONPath](/docs/reference/kubectl/jsonpath/) - Syntax guide for using [JSONPath expressions](https://goessner.net/articles/JsonPath/) with kubectl.
|
||||||
* [kubeadm](/docs/reference/setup-tools/kubeadm/) - CLI tool to easily provision a secure Kubernetes cluster.
|
* [kubeadm](/docs/reference/setup-tools/kubeadm/) - CLI tool to easily provision a secure Kubernetes cluster.
|
||||||
|
|
||||||
## Components Reference
|
## Components
|
||||||
|
|
||||||
* [kubelet](/docs/reference/command-line-tools-reference/kubelet/) - The primary *node agent* that runs on each node. The kubelet takes a set of PodSpecs and ensures that the described containers are running and healthy.
|
* [kubelet](/docs/reference/command-line-tools-reference/kubelet/) - The primary *node agent* that runs on each node. The kubelet takes a set of PodSpecs and ensures that the described containers are running and healthy.
|
||||||
* [kube-apiserver](/docs/reference/command-line-tools-reference/kube-apiserver/) - REST API that validates and configures data for API objects such as pods, services, replication controllers.
|
* [kube-apiserver](/docs/reference/command-line-tools-reference/kube-apiserver/) - REST API that validates and configures data for API objects such as pods, services, replication controllers.
|
||||||
* [kube-controller-manager](/docs/reference/command-line-tools-reference/kube-controller-manager/) - Daemon that embeds the core control loops shipped with Kubernetes.
|
* [kube-controller-manager](/docs/reference/command-line-tools-reference/kube-controller-manager/) - Daemon that embeds the core control loops shipped with Kubernetes.
|
||||||
* [kube-proxy](/docs/reference/command-line-tools-reference/kube-proxy/) - Can do simple TCP/UDP stream forwarding or round-robin TCP/UDP forwarding across a set of back-ends.
|
* [kube-proxy](/docs/reference/command-line-tools-reference/kube-proxy/) - Can do simple TCP/UDP stream forwarding or round-robin TCP/UDP forwarding across a set of back-ends.
|
||||||
* [kube-scheduler](/docs/reference/command-line-tools-reference/kube-scheduler/) - Scheduler that manages availability, performance, and capacity.
|
* [kube-scheduler](/docs/reference/command-line-tools-reference/kube-scheduler/) - Scheduler that manages availability, performance, and capacity.
|
||||||
* [kube-scheduler Policies](/docs/reference/scheduling/policies)
|
|
||||||
* [kube-scheduler Profiles](/docs/reference/scheduling/config#profiles)
|
## Scheduling
|
||||||
|
|
||||||
|
* [Scheduler Policies](/docs/reference/scheduling/policies)
|
||||||
|
* [Scheduler Profiles](/docs/reference/scheduling/config#profiles)
|
||||||
|
|
||||||
|
|
||||||
## Design Docs
|
## Design Docs
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: API Access Control
|
title: API Access Control
|
||||||
weight: 20
|
weight: 15
|
||||||
no_list: true
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
title: Command line tools reference
|
title: Component tools
|
||||||
weight: 60
|
weight: 60
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
approvers:
|
approvers:
|
||||||
- chenopis
|
- chenopis
|
||||||
- abiogenesis-now
|
- abiogenesis-now
|
||||||
title: Standardized Glossary
|
title: Glossary
|
||||||
layout: glossary
|
layout: glossary
|
||||||
noedit: true
|
noedit: true
|
||||||
default_active_tag: fundamental
|
default_active_tag: fundamental
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
title: Kubernetes Issues and Security
|
title: Kubernetes Issues and Security
|
||||||
weight: 10
|
weight: 40
|
||||||
---
|
---
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "kubectl CLI"
|
title: "CLI"
|
||||||
weight: 60
|
weight: 60
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
title: Setup tools reference
|
title: Setup tools
|
||||||
weight: 50
|
weight: 50
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
---
|
---
|
||||||
|
title: Other Tools
|
||||||
reviewers:
|
reviewers:
|
||||||
- janetkuo
|
- janetkuo
|
||||||
title: Tools
|
|
||||||
content_type: concept
|
content_type: concept
|
||||||
|
weight: 80
|
||||||
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- overview -->
|
<!-- overview -->
|
||||||
|
@ -10,13 +12,6 @@ Kubernetes contains several built-in tools to help you work with the Kubernetes
|
||||||
|
|
||||||
|
|
||||||
<!-- body -->
|
<!-- body -->
|
||||||
## Kubectl
|
|
||||||
|
|
||||||
[`kubectl`](/docs/tasks/tools/install-kubectl/) is the command line tool for Kubernetes. It controls the Kubernetes cluster manager.
|
|
||||||
|
|
||||||
## Kubeadm
|
|
||||||
|
|
||||||
[`kubeadm`](/docs/setup/production-environment/tools/kubeadm/install-kubeadm/) is the command line tool for easily provisioning a secure Kubernetes cluster on top of physical or cloud servers or virtual machines (currently in alpha).
|
|
||||||
|
|
||||||
## Minikube
|
## Minikube
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
---
|
---
|
||||||
title: Kubernetes API Overview
|
title: API Overview
|
||||||
reviewers:
|
reviewers:
|
||||||
- erictune
|
- erictune
|
||||||
- lavalamp
|
- lavalamp
|
||||||
- jbeda
|
- jbeda
|
||||||
content_type: concept
|
content_type: concept
|
||||||
weight: 10
|
weight: 10
|
||||||
|
no_list: true
|
||||||
card:
|
card:
|
||||||
name: reference
|
name: reference
|
||||||
weight: 50
|
weight: 50
|
||||||
|
|
Loading…
Reference in New Issue