Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
bf5f69bf
Commit
bf5f69bf
authored
Dec 17, 2015
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #18501 from feihujiang/printHowToReAttachToSession
Auto commit by PR queue bot
parents
cd59d1e5
3a3421b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
attach.go
pkg/kubectl/cmd/attach.go
+8
-1
No files found.
pkg/kubectl/cmd/attach.go
View file @
bf5f69bf
...
@@ -221,7 +221,14 @@ func (p *AttachOptions) Run() error {
...
@@ -221,7 +221,14 @@ func (p *AttachOptions) Run() error {
TTY
:
tty
,
TTY
:
tty
,
},
api
.
Scheme
)
},
api
.
Scheme
)
return
p
.
Attach
.
Attach
(
"POST"
,
req
.
URL
(),
p
.
Config
,
stdin
,
p
.
Out
,
p
.
Err
,
tty
)
err
=
p
.
Attach
.
Attach
(
"POST"
,
req
.
URL
(),
p
.
Config
,
stdin
,
p
.
Out
,
p
.
Err
,
tty
)
if
err
!=
nil
{
return
err
}
if
p
.
Stdin
&&
tty
&&
pod
.
Spec
.
RestartPolicy
==
api
.
RestartPolicyAlways
{
fmt
.
Fprintf
(
p
.
Out
,
"Session ended, resume using 'kubectl attach %s -c %s -i -t' command when the pod is running
\n
"
,
pod
.
Name
,
containerToAttach
.
Name
)
}
return
nil
}
}
// GetContainer returns the container to attach to, with a fallback.
// GetContainer returns the container to attach to, with a fallback.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment