Uh oh!
There was an error while loading. Please reload this page.
cli: implement ps command - #444
Conversation
devimc
commented
Aug 22, 2017
depends on containers/virtcontainers#269 |
clearcontainersbot
commented
Aug 24, 2017
metrics-failed |
4 similar comments
clearcontainersbot
commented
Aug 24, 2017
metrics-failed |
clearcontainersbot
commented
Aug 24, 2017
metrics-failed |
clearcontainersbot
commented
Aug 25, 2017
metrics-failed |
clearcontainersbot
commented
Aug 25, 2017
metrics-failed |
clearcontainersbot
commented
Aug 25, 2017
Popular Images qa-failed 👎 |
1 similar comment
clearcontainersbot
commented
Aug 28, 2017
Popular Images qa-failed 👎 |
clearcontainersbot
commented
Aug 28, 2017
Popular Images qa-failed 👎 |
clearcontainersbot
commented
Sep 26, 2017
kubernetes qa-failed 👎 |
2 similar comments
clearcontainersbot
commented
Oct 3, 2017
kubernetes qa-failed 👎 |
clearcontainersbot
commented
Oct 4, 2017
kubernetes qa-failed 👎 |
jodh-intel
commented
Oct 9, 2017
Still blocked on containers/virtcontainers#269. |
clearcontainersbot
commented
Oct 23, 2017
kubernetes qa-failed 👎 |
clearcontainersbot
commented
Oct 25, 2017
kubernetes qa-failed 👎 |
2 similar comments
clearcontainersbot
commented
Oct 28, 2017
kubernetes qa-failed 👎 |
clearcontainersbot
commented
Oct 30, 2017
kubernetes qa-failed 👎 |
sboeuf
commented
Oct 30, 2017
@devimc please rebase this PR in order to get the CI properly running. |
960371d to
f1d3620Compare
sboeuf
left a comment
There was a problem hiding this comment.
Looks good, but I would prefer the CLI params to be parsed before to call into ps()
| SkipArgReorder: true, | ||
| } | ||
| func ps(context *cli.Context) error { |
There was a problem hiding this comment.
I would prefer a function prototype like this:
funcps(containerID, formatstring) error {since we could reuse this function. Also it is clearer to parse the arguments into the Action callback.
clearcontainersbot
commented
Oct 30, 2017
kubernetes qa-passed 👍 |
devimc
commented
Oct 30, 2017
@sboeuf changes applied |
devimc
commented
Nov 13, 2017
@jodh-intel cc-proxy was updated, can you please try again? |
clearcontainersbot
commented
Nov 13, 2017
kubernetes qa-passed 👍 |
Still no joy I'm afraid: That (not terribly helpful) error seems to be coming from: There isn't anything else useful in journald fwics. |
clearcontainersbot
commented
Nov 23, 2017
kubernetes qa-passed 👍 |
jodh-intel
commented
Nov 27, 2017
I've just re-tested with latest runtime + latest agent but same problem :( (It would be great to get this landed soon as I know how tricky it's been to add the required functionality to various parts of the system). |
devimc
commented
Nov 27, 2017
Hi @jodh-intel , still waiting for clearcontainers/agent#90 |
devimc
commented
Nov 27, 2017
@jodh-intel it works for me probably we are doing something different |
jodh-intel
commented
Nov 28, 2017
I'm still seeing the problem with image |
devimc
commented
Nov 28, 2017
Hi @jodh-intel I'm using fedora + CL container image [1] + latest agent [2] btw osbuilder does not include ps (procps-ng-bin) [1] - https://download.clearlinux.org/releases/18860/clear/clear-18860-containers.img.xz |
clearcontainersbot
commented
Nov 28, 2017
kubernetes qa-passed 👍 |
jodh-intel
commented
Nov 28, 2017
I added the procps package (like clearcontainers/osbuilder#41), but I'm still seeing |
jodh-intel
commented
Dec 5, 2017
After a rebase (required due to proxy changes), I am now getting the correct Could you rebase and we can get this merged? |
devimc
commented
Dec 5, 2017
@jodh-intel great! thanks |
clearcontainersbot
commented
Dec 5, 2017
kubernetes qa-passed 👍 |
| var options vc.ProcessListOptions | ||
| // [1:] is to remove command name, ex: |
There was a problem hiding this comment.
Has this comment become detached from the code (line 43?)
| var options vc.ProcessListOptions | ||
| // [1:] is to remove command name, ex: | ||
| // context.Args(): [containet_id ps_arg1 ps_arg2 ...] |
jodh-intel
commented
Dec 6, 2017
Hi @devimc - could you re-push? The CI seems to have got confused. |
jodh-intel
commented
Dec 6, 2017
err - it just updated as I was typing! ;) |
ps command is used by ```docker top``` to show the processes running inside the container partially fixesclearcontainers#95 Signed-off-by: Julio Montes <julio.montes@intel.com>
devimc
commented
Dec 6, 2017
@jodh-intel changes applied, thanks |
clearcontainersbot
commented
Dec 6, 2017
kubernetes qa-passed 👍 |
jodh-intel
commented
Dec 7, 2017
Coveralls is stuck (surprise!) - https://coveralls.io/jobs/31802016. Merging... |
ps command is used by
docker topto showthe processes running inside the container
partially fixes#95
Signed-off-by: Julio Montes julio.montes@intel.com