diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-09 17:13:07 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-12 14:28:07 +0000 |
commit | 4f225b47c9be6f9d72997cea83c029275c3530db (patch) | |
tree | 5b9092449ca27777657e7baf1a880bb1c313ed5b /libpod/options.go | |
parent | aa85ae212e4cc23df7a6bafe8992dc76770bac87 (diff) | |
download | podman-4f225b47c9be6f9d72997cea83c029275c3530db.tar.gz podman-4f225b47c9be6f9d72997cea83c029275c3530db.tar.bz2 podman-4f225b47c9be6f9d72997cea83c029275c3530db.zip |
Refactor Pod to use a Config struct
This allows us to JSON it and stuff it in the DB - previously,
all pod fields were private, so JSON couldn't encode them. This
allows us to keep all pod fields private by having a substruct
with public fields.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #184
Approved by: baude
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/options.go b/libpod/options.go index 965eb8cc5..f5df3349f 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -649,7 +649,7 @@ func WithPodName(name string) PodCreateOption { return errors.Wrapf(ErrInvalidArg, "name must match regex [a-zA-Z0-9_-]+") } - pod.name = name + pod.config.Name = name return nil } @@ -662,9 +662,9 @@ func WithPodLabels(labels map[string]string) PodCreateOption { return ErrPodFinalized } - pod.labels = make(map[string]string) + pod.config.Labels = make(map[string]string) for key, value := range labels { - pod.labels[key] = value + pod.config.Labels[key] = value } return nil |