Move kubectl Concept topics to Tutorials. (#2804)
* Move kubectl Concept topics to Tutorials. * Add redirects and update links.
This commit is contained in:
@@ -3,13 +3,6 @@ abstract: "Detailed explanations of Kubernetes system concepts and abstractions.
|
|||||||
toc:
|
toc:
|
||||||
- docs/concepts/index.md
|
- docs/concepts/index.md
|
||||||
|
|
||||||
- title: Kubectl Command Line
|
|
||||||
section:
|
|
||||||
- docs/concepts/tools/kubectl/object-management-overview.md
|
|
||||||
- docs/concepts/tools/kubectl/object-management-using-imperative-commands.md
|
|
||||||
- docs/concepts/tools/kubectl/object-management-using-imperative-config.md
|
|
||||||
- docs/concepts/tools/kubectl/object-management-using-declarative-config.md
|
|
||||||
|
|
||||||
- title: Kubernetes Objects
|
- title: Kubernetes Objects
|
||||||
section:
|
section:
|
||||||
- docs/concepts/abstractions/overview.md
|
- docs/concepts/abstractions/overview.md
|
||||||
|
|||||||
@@ -32,6 +32,12 @@ toc:
|
|||||||
- title: Online Training Course
|
- title: Online Training Course
|
||||||
path: https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615
|
path: https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615
|
||||||
- docs/tutorials/stateless-application/hello-minikube.md
|
- docs/tutorials/stateless-application/hello-minikube.md
|
||||||
|
- title: Object Management Using kubectl
|
||||||
|
section:
|
||||||
|
- docs/tutorials/object-management-kubectl/object-management.md
|
||||||
|
- docs/tutorials/object-management-kubectl/imperative-object-management-command.md
|
||||||
|
- docs/tutorials/object-management-kubectl/imperative-object-management-configuration.md
|
||||||
|
- docs/tutorials/object-management-kubectl/declarative-object-management-configuration.md
|
||||||
- title: Stateless Applications
|
- title: Stateless Applications
|
||||||
section:
|
section:
|
||||||
- docs/tutorials/stateless-application/run-stateless-application-deployment.md
|
- docs/tutorials/stateless-application/run-stateless-application-deployment.md
|
||||||
|
|||||||
+5
-2
@@ -1,5 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Declarative Management of Kubernetes Objects Using Configuration Files
|
title: Declarative Management of Kubernetes Objects Using Configuration Files
|
||||||
|
redirect_from:
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-declarative-config/"
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-declarative-config.html"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture overview %}
|
{% capture overview %}
|
||||||
@@ -949,8 +952,8 @@ The recommended approach for ThirdPartyResources is to use [imperative object co
|
|||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
|
|
||||||
{% capture whatsnext %}
|
{% capture whatsnext %}
|
||||||
- [Managing Kubernetes Objects Using Imperative Commands](/docs/concepts/tools/kubectl/object-management-using-imperative-commands/)
|
- [Managing Kubernetes Objects Using Imperative Commands](/docs/tutorials/object-management-kubectl/imperative-object-management-command/)
|
||||||
- [Imperative Management of Kubernetes Objects Using Configuration Files](/docs/concepts/tools/kubectl/object-management-using-imperative-config/)
|
- [Imperative Management of Kubernetes Objects Using Configuration Files](docs/tutorials/object-management-kubectl/imperative-object-management-configuration/)
|
||||||
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
||||||
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
+5
-2
@@ -1,5 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Managing Kubernetes Objects Using Imperative Commands
|
title: Managing Kubernetes Objects Using Imperative Commands
|
||||||
|
redirect_from:
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-imperative-commands/"
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-imperative-commands.html"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture overview %}
|
{% capture overview %}
|
||||||
@@ -150,8 +153,8 @@ kubectl create --edit -f /tmp/srv.yaml
|
|||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
|
|
||||||
{% capture whatsnext %}
|
{% capture whatsnext %}
|
||||||
- [Managing Kubernetes Objects Using Object Configuration (Imperative)](/docs/concepts/tools/kubectl/object-management-using-imperative-config/)
|
- [Managing Kubernetes Objects Using Object Configuration (Imperative)](/docs/tutorials/object-management-kubectl/imperative-object-management-configuration/)
|
||||||
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/concepts/tools/kubectl/object-management-using-declarative-config/)
|
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/tutorials/object-management-kubectl/declarative-object-management-configuration/)
|
||||||
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
||||||
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
+5
-2
@@ -1,5 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Imperative Management of Kubernetes Objects Using Configuration Files
|
title: Imperative Management of Kubernetes Objects Using Configuration Files
|
||||||
|
redirect_from:
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-imperative-config/"
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-using-imperative-config.html"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture overview %}
|
{% capture overview %}
|
||||||
@@ -120,8 +123,8 @@ template:
|
|||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
|
|
||||||
{% capture whatsnext %}
|
{% capture whatsnext %}
|
||||||
- [Managing Kubernetes Objects Using Imperative Commands](/docs/concepts/tools/kubectl/object-management-using-imperative-commands/)
|
- [Managing Kubernetes Objects Using Imperative Commands](/docs/tutorials/object-management-kubectl/imperative-object-management-command/)
|
||||||
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/concepts/tools/kubectl/object-management-using-declarative-config/)
|
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/tutorials/object-management-kubectl/declarative-object-management-configuration/)
|
||||||
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
||||||
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
+6
-3
@@ -1,5 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Kubernetes Object Management
|
title: Kubernetes Object Management
|
||||||
|
redirect_from:
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-overview/"
|
||||||
|
- "/docs/concepts/tools/kubectl/object-management-overview.html"
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture overview %}
|
{% capture overview %}
|
||||||
@@ -162,9 +165,9 @@ Disadvantages compared to imperative object configuration:
|
|||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
|
|
||||||
{% capture whatsnext %}
|
{% capture whatsnext %}
|
||||||
- [Managing Kubernetes Objects Using Imperative Commands](/docs/concepts/tools/kubectl/object-management-using-imperative-commands/)
|
- [Managing Kubernetes Objects Using Imperative Commands](/docs/tutorials/object-management-kubectl/imperative-object-management-command/)
|
||||||
- [Managing Kubernetes Objects Using Object Configuration (Imperative)](/docs/concepts/tools/kubectl/object-management-using-imperative-config/)
|
- [Managing Kubernetes Objects Using Object Configuration (Imperative)](/docs/tutorials/object-management-kubectl/imperative-object-management-configuration/)
|
||||||
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/concepts/tools/kubectl/object-management-using-declarative-config/)
|
- [Managing Kubernetes Objects Using Object Configuration (Declarative)](/docs/tutorials/object-management-kubectl/declarative-object-management-configuration/)
|
||||||
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
- [Kubectl Command Reference](/docs/user-guide/kubectl/v1.5/)
|
||||||
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
- [Kubernetes Object Schema Reference](/docs/resources-reference/v1.5/)
|
||||||
|
|
||||||
Reference in New Issue
Block a user