diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-09-28 11:09:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 11:09:08 -0700 |
commit | 77d80228481d1902be0a9ed30622189b54d2e3b0 (patch) | |
tree | 3b55f94a0f2d1deb82431abfc59476b07a91dafb /docs | |
parent | ca8469aace64d71fdb1849607d8227c31a3cf4da (diff) | |
parent | 6db7027e975029bc8c50fef958452d502620edea (diff) | |
download | podman-77d80228481d1902be0a9ed30622189b54d2e3b0.tar.gz podman-77d80228481d1902be0a9ed30622189b54d2e3b0.tar.bz2 podman-77d80228481d1902be0a9ed30622189b54d2e3b0.zip |
Merge pull request #1561 from baude/addbuildahdisttoinfo
Add buildah version and distribution to info
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-info.1.md | 83 |
1 files changed, 44 insertions, 39 deletions
diff --git a/docs/podman-info.1.md b/docs/podman-info.1.md index 364aaf3aa..478f79467 100644 --- a/docs/podman-info.1.md +++ b/docs/podman-info.1.md @@ -30,111 +30,116 @@ Run podman info with plain text response: ``` $ podman info host: + BuildahVersion: 1.4-dev Conmon: - package: conmon-1.10.3-1.gite558bd5.fc28.x86_64 - path: /usr/libexec/crio/conmon - version: 'conmon version 1.10.3, commit: 55022fb3be4382a61599b7024a677f9a642ae0a7' - MemFree: 2428579840 - MemTotal: 16679260160 + package: Unknown + path: /usr/libexec/podman/conmon + version: 'conmon version 1.12.0-dev, commit: d724f3d54ad2d95b6de741085d4990190ebfd7ff' + Distribution: + distribution: fedora + version: "28" + MemFree: 1271083008 + MemTotal: 33074233344 OCIRuntime: - package: runc-1.0.0-46.dev.gitb4e2ecb.fc28.x86_64 + package: runc-1.0.0-51.dev.gitfdd8055.fc28.x86_64 path: /usr/bin/runc version: 'runc version spec: 1.0.0' - SwapFree: 0 - SwapTotal: 0 + SwapFree: 34309664768 + SwapTotal: 34359734272 arch: amd64 - cpus: 4 + cpus: 8 hostname: localhost.localdomain - kernel: 4.17.11-200.fc28.x86_64 + kernel: 4.18.7-200.fc28.x86_64 os: linux - uptime: 23h 16m 57.86s (Approximately 0.96 days) + uptime: 218h 49m 33.66s (Approximately 9.08 days) insecure registries: registries: [] registries: registries: - - docker.io - quay.io - registry.fedoraproject.org + - docker.io - registry.access.redhat.com store: ContainerStore: - number: 3 + number: 37 GraphDriverName: overlay GraphOptions: - overlay.mountopt=nodev + - overlay.override_kernel_check=true GraphRoot: /var/lib/containers/storage GraphStatus: - Backing Filesystem: xfs + Backing Filesystem: extfs Native Overlay Diff: "true" Supports d_type: "true" ImageStore: - number: 2 + number: 17 RunRoot: /var/run/containers/storage + ``` Run podman info with JSON formatted response: ``` -$ podman info --debug --format json { - "debug": { - "compiler": "gc", - "git commit": "", - "go version": "go1.10", - "podman version": "0.8.2-dev" - }, "host": { + "BuildahVersion": "1.4-dev", "Conmon": { - "package": "conmon-1.10.3-1.gite558bd5.fc28.x86_64", - "path": "/usr/libexec/crio/conmon", - "version": "conmon version 1.10.3, commit: 55022fb3be4382a61599b7024a677f9a642ae0a7" + "package": "Unknown", + "path": "/usr/libexec/podman/conmon", + "version": "conmon version 1.12.0-dev, commit: d724f3d54ad2d95b6de741085d4990190ebfd7ff" }, - "MemFree": 2484420608, - "MemTotal": 16679260160, + "Distribution": { + "distribution": "fedora", + "version": "28" + }, + "MemFree": 1204109312, + "MemTotal": 33074233344, "OCIRuntime": { - "package": "runc-1.0.0-46.dev.gitb4e2ecb.fc28.x86_64", + "package": "runc-1.0.0-51.dev.gitfdd8055.fc28.x86_64", "path": "/usr/bin/runc", "version": "runc version spec: 1.0.0" }, - "SwapFree": 0, - "SwapTotal": 0, + "SwapFree": 34309664768, + "SwapTotal": 34359734272, "arch": "amd64", - "cpus": 4, + "cpus": 8, "hostname": "localhost.localdomain", - "kernel": "4.17.11-200.fc28.x86_64", + "kernel": "4.18.7-200.fc28.x86_64", "os": "linux", - "uptime": "23h 14m 45.48s (Approximately 0.96 days)" + "uptime": "218h 50m 35.02s (Approximately 9.08 days)" }, "insecure registries": { "registries": [] }, "registries": { "registries": [ - "docker.io", "quay.io", "registry.fedoraproject.org", + "docker.io", "registry.access.redhat.com" ] }, "store": { "ContainerStore": { - "number": 3 + "number": 37 }, "GraphDriverName": "overlay", "GraphOptions": [ - "overlay.mountopt=nodev" + "overlay.mountopt=nodev", + "overlay.override_kernel_check=true" ], "GraphRoot": "/var/lib/containers/storage", "GraphStatus": { - "Backing Filesystem": "xfs", + "Backing Filesystem": "extfs", "Native Overlay Diff": "true", "Supports d_type": "true" }, "ImageStore": { - "number": 2 + "number": 17 }, "RunRoot": "/var/run/containers/storage" } } - ``` +``` Run podman info and only get the registries information. ``` $ podman info --format={{".registries"}} |