diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-08-05 09:29:59 +0200 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-09-02 22:06:19 +0200 |
commit | ebfea2f4f89328ec3f74a8deedb3e727ce89ea59 (patch) | |
tree | efbc2519efc370db670948a6e3a709e4a7e5f2d0 /pkg/domain/entities | |
parent | 1184cdf03d8464451d36b24643e57b65a8b97980 (diff) | |
download | podman-ebfea2f4f89328ec3f74a8deedb3e727ce89ea59.tar.gz podman-ebfea2f4f89328ec3f74a8deedb3e727ce89ea59.tar.bz2 podman-ebfea2f4f89328ec3f74a8deedb3e727ce89ea59.zip |
APIv2 add generate systemd endpoint
Add support for generating systemd units
via the api and podman-remote.
Change the GenerateSystemdReport type to return the
units as map[string]string with the unit name as key.
Add `--format` flag to `podman generate systemd`
to allow the output to be formatted as json.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/generate.go | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/pkg/domain/entities/generate.go b/pkg/domain/entities/generate.go index a8ad13705..4a0d7537e 100644 --- a/pkg/domain/entities/generate.go +++ b/pkg/domain/entities/generate.go @@ -4,8 +4,6 @@ import "io" // GenerateSystemdOptions control the generation of systemd unit files. type GenerateSystemdOptions struct { - // Files - generate files instead of printing to stdout. - Files bool // Name - use container/pod name instead of its ID. Name bool // New - create a new container instead of starting a new one. @@ -24,9 +22,8 @@ type GenerateSystemdOptions struct { // GenerateSystemdReport type GenerateSystemdReport struct { - // Output of the generate process. Either the generated files or their - // entire content. - Output string + // Units of the generate process. key = unit name -> value = unit content + Units map[string]string } // GenerateKubeOptions control the generation of Kubernetes YAML files. |