Add ToC to some longer documents.

This commit is contained in:
Eric Tune
2015-07-13 10:57:44 -07:00
parent ee8513f1bb
commit 921619ab38
18 changed files with 309 additions and 52 deletions

View File

@@ -18,6 +18,15 @@ Once your application is running, youll inevitably need to debug problems wit
Earlier we described how you can use ```kubectl get pods``` to retrieve simple status information about
your pods. But there are a number of ways to get even more information about your application.
**Table of Contents**
<!-- BEGIN MUNGE: GENERATED_TOC -->
- [Kubernetes User Guide: Managing Applications: Application Introspection and Debugging](#kubernetes-user-guide:-managing-applications:-application-introspection-and-debugging)
- [Using ```kubectl describe pod``` to fetch details about pods](#using-```kubectl-describe-pod```-to-fetch-details-about-pods)
- [Example: debugging Pending Pods](#example:-debugging-pending-pods)
- [Example: debugging a down/unreachable node](#example:-debugging-a-down/unreachable-node)
<!-- END MUNGE: GENERATED_TOC -->
## Using ```kubectl describe pod``` to fetch details about pods
For this example well use a ReplicationController to create two pods, similar to the earlier example.