diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-11 15:13:32 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-12 08:35:48 -0500 |
commit | 03c29c357fb21d69ed878dcfea29f99c7a369f25 (patch) | |
tree | 210f2309a7fe54ff56a7ac4d3cb3ad96e999c948 /pkg/api/handlers | |
parent | 07f775d161ef642cbbe5dc98071aa04d9312b17e (diff) | |
download | podman-03c29c357fb21d69ed878dcfea29f99c7a369f25.tar.gz podman-03c29c357fb21d69ed878dcfea29f99c7a369f25.tar.bz2 podman-03c29c357fb21d69ed878dcfea29f99c7a369f25.zip |
add podman remote system df
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers')
-rw-r--r-- | pkg/api/handlers/libpod/system.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/system.go b/pkg/api/handlers/libpod/system.go index 72a38db63..81ed37b4a 100644 --- a/pkg/api/handlers/libpod/system.go +++ b/pkg/api/handlers/libpod/system.go @@ -7,6 +7,7 @@ import ( "github.com/containers/libpod/pkg/api/handlers/compat" "github.com/containers/libpod/pkg/api/handlers/utils" "github.com/containers/libpod/pkg/domain/entities" + "github.com/containers/libpod/pkg/domain/infra/abi" "github.com/gorilla/schema" "github.com/pkg/errors" ) @@ -79,3 +80,15 @@ func SystemReset(w http.ResponseWriter, r *http.Request) { } utils.WriteResponse(w, http.StatusOK, nil) } + +func DiskUsage(w http.ResponseWriter, r *http.Request) { + // Options are only used by the CLI + options := entities.SystemDfOptions{} + runtime := r.Context().Value("runtime").(*libpod.Runtime) + ic := abi.ContainerEngine{Libpod: runtime} + response, err := ic.SystemDf(r.Context(), options) + if err != nil { + utils.InternalServerError(w, err) + } + utils.WriteResponse(w, http.StatusOK, response) +} |