mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	fix a nit in long description of attach command
remove an extra 'a'
This commit is contained in:
		@@ -13,7 +13,7 @@ kubectl attach \- Attach to a running container.
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
.SH DESCRIPTION
 | 
					.SH DESCRIPTION
 | 
				
			||||||
.PP
 | 
					.PP
 | 
				
			||||||
Attach to a a process that is already running inside an existing container.
 | 
					Attach to a process that is already running inside an existing container.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.SH OPTIONS
 | 
					.SH OPTIONS
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -38,7 +38,7 @@ Attach to a running container.
 | 
				
			|||||||
### Synopsis
 | 
					### Synopsis
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Attach to a a process that is already running inside an existing container.
 | 
					Attach to a process that is already running inside an existing container.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
kubectl attach POD -c CONTAINER
 | 
					kubectl attach POD -c CONTAINER
 | 
				
			||||||
@@ -98,7 +98,7 @@ $ kubectl attach 123456-7890 -c ruby-container -i -t
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
* [kubectl](kubectl.md)	 - kubectl controls the Kubernetes cluster manager
 | 
					* [kubectl](kubectl.md)	 - kubectl controls the Kubernetes cluster manager
 | 
				
			||||||
 | 
					
 | 
				
			||||||
###### Auto generated by spf13/cobra on 24-Nov-2015
 | 
					###### Auto generated by spf13/cobra on 25-Nov-2015
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
 | 
					<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
 | 
				
			||||||
[]()
 | 
					[]()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -57,7 +57,7 @@ func NewCmdAttach(f *cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer)
 | 
				
			|||||||
	cmd := &cobra.Command{
 | 
						cmd := &cobra.Command{
 | 
				
			||||||
		Use:     "attach POD -c CONTAINER",
 | 
							Use:     "attach POD -c CONTAINER",
 | 
				
			||||||
		Short:   "Attach to a running container.",
 | 
							Short:   "Attach to a running container.",
 | 
				
			||||||
		Long:    "Attach to a a process that is already running inside an existing container.",
 | 
							Long:    "Attach to a process that is already running inside an existing container.",
 | 
				
			||||||
		Example: attach_example,
 | 
							Example: attach_example,
 | 
				
			||||||
		Run: func(cmd *cobra.Command, args []string) {
 | 
							Run: func(cmd *cobra.Command, args []string) {
 | 
				
			||||||
			cmdutil.CheckErr(options.Complete(f, cmd, args))
 | 
								cmdutil.CheckErr(options.Complete(f, cmd, args))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user