-
Notifications
You must be signed in to change notification settings - Fork 3k
APIv2 review corrections #3 #4965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
openshift-merge-robot
merged 1 commit into
containers:master
from
baude:reviewcorrections3
Jan 26, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,19 @@ | ||
| package define | ||
|
|
||
| const ( | ||
| // PodStateCreated indicates the pod is created but has not been started | ||
| PodStateCreated = "Created" | ||
| // PodStateErrored indicates the pod is in an errored state where | ||
| // information about it can no longer be retrieved | ||
| PodStateErrored = "Error" | ||
| // PodStateExited indicates the pod ran but has been stopped | ||
| PodStateExited = "Exited" | ||
| // PodStatePaused indicates the pod has been paused | ||
| PodStatePaused = "Paused" | ||
| // PodStateRunning indicates that one or more of the containers in | ||
| // the pod is running | ||
| PodStateRunning = "Running" | ||
| // PodStateStopped indicates all of the containers belonging to the pod | ||
| // are stopped. | ||
| PodStateStopped = "Stopped" | ||
| ) |
This file contains hidden or 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 @@ | ||
| package libpod | ||
|
|
||
| import "github.com/containers/libpod/libpod/define" | ||
|
|
||
| // GetPodStatus determines the status of the pod based on the | ||
| // statuses of the containers in the pod. | ||
| // Returns a string representation of the pod status | ||
| func (p *Pod) GetPodStatus() (string, error) { | ||
| ctrStatuses, err := p.Status() | ||
| if err != nil { | ||
| return define.PodStateErrored, err | ||
| } | ||
| return CreatePodStatusResults(ctrStatuses) | ||
| } | ||
|
|
||
| func CreatePodStatusResults(ctrStatuses map[string]define.ContainerStatus) (string, error) { | ||
| ctrNum := len(ctrStatuses) | ||
| if ctrNum == 0 { | ||
| return define.PodStateCreated, nil | ||
| } | ||
| statuses := map[string]int{ | ||
| define.PodStateStopped: 0, | ||
| define.PodStateRunning: 0, | ||
| define.PodStatePaused: 0, | ||
| define.PodStateCreated: 0, | ||
| define.PodStateErrored: 0, | ||
| } | ||
| for _, ctrStatus := range ctrStatuses { | ||
| switch ctrStatus { | ||
| case define.ContainerStateExited: | ||
| fallthrough | ||
| case define.ContainerStateStopped: | ||
| statuses[define.PodStateStopped]++ | ||
| case define.ContainerStateRunning: | ||
| statuses[define.PodStateRunning]++ | ||
| case define.ContainerStatePaused: | ||
| statuses[define.PodStatePaused]++ | ||
| case define.ContainerStateCreated, define.ContainerStateConfigured: | ||
| statuses[define.PodStateCreated]++ | ||
| default: | ||
| statuses[define.PodStateErrored]++ | ||
| } | ||
| } | ||
|
|
||
| switch { | ||
| case statuses[define.PodStateRunning] > 0: | ||
| return define.PodStateRunning, nil | ||
| case statuses[define.PodStatePaused] == ctrNum: | ||
| return define.PodStatePaused, nil | ||
| case statuses[define.PodStateStopped] == ctrNum: | ||
| return define.PodStateExited, nil | ||
| case statuses[define.PodStateStopped] > 0: | ||
| return define.PodStateStopped, nil | ||
| case statuses[define.PodStateErrored] > 0: | ||
| return define.PodStateErrored, nil | ||
| default: | ||
| return define.PodStateCreated, nil | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.