-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from tengqm/fix-kubectl-for-1.11
Fix kubectl reference doc generation for release-1.11
- Loading branch information
Showing
6 changed files
with
87 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
manifest.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
gen-kubectldocs/generators/v1_11/static_includes/_app_management.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# <strong>APP MANAGEMENT</strong> | ||
|
||
This section contains commands for creating, updating, deleting, and | ||
viewing your workloads in a Kubernetes cluster. |
11 changes: 11 additions & 0 deletions
11
gen-kubectldocs/generators/v1_11/static_includes/_getting_started.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# <strong>GETTING STARTED</strong> | ||
|
||
This section contains the most basic commands for getting a workload | ||
running on your cluster. | ||
|
||
- `run` will start running 1 or more instances of a container image on your cluster. | ||
- `expose` will load balance traffic across the running instances, and can create a HA proxy for accessing the containers from outside the cluster. | ||
|
||
Once your workloads are running, you can use the commands in the | ||
[WORKING WITH APPS](#-strong-working-with-apps-strong-) section to | ||
inspect them. |
8 changes: 8 additions & 0 deletions
8
gen-kubectldocs/generators/v1_11/static_includes/_working_with_apps.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# <strong>WORKING WITH APPS</strong> | ||
|
||
This section contains commands for inspecting and debugging your | ||
applications. | ||
|
||
- `logs` will print the logs from the specified pod + container. | ||
- `exec` can be used to get an interactive shell on a pod + container. | ||
- `describe` will print debug information about the given resource. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
categories: | ||
- name: GETTING STARTED | ||
include: _getting_started.md | ||
commands: | ||
- create | ||
- get | ||
- run | ||
- expose | ||
- delete | ||
- name: APP MANAGEMENT | ||
include: _app_management.md | ||
commands: | ||
- apply | ||
- annotate | ||
- autoscale | ||
- convert | ||
- edit | ||
- label | ||
- patch | ||
- replace | ||
- rollout | ||
- scale | ||
- set | ||
- wait | ||
- name: WORKING WITH APPS | ||
include: _working_with_apps.md | ||
commands: | ||
- attach | ||
- auth | ||
- cp | ||
- describe | ||
- exec | ||
- logs | ||
- port-forward | ||
- proxy | ||
- top | ||
- name: CLUSTER MANAGEMENT | ||
commands: | ||
- api-versions | ||
- certificate | ||
- cluster-info | ||
- cordon | ||
- drain | ||
- taint | ||
- uncordon | ||
- name: KUBECTL SETTINGS AND USAGE | ||
commands: | ||
- alpha | ||
- api-resources | ||
- completion | ||
- config | ||
- explain | ||
- options | ||
- plugin | ||
- version | ||
- name: DEPRECATED COMMANDS | ||
commands: | ||
- rolling-update | ||
- run-container |