diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-05 14:28:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 14:28:10 -0400 |
commit | dbc4a5d85bb948a41af710804d61cdba8aac8e0b (patch) | |
tree | b468b9cf7ce10a5e1be756656513274f4eda228d /pkg/specgen | |
parent | 7b50af42c30e6a0d80a20a4e55f6cc7d2c0110d5 (diff) | |
parent | 68fe1950fe5bad7e29b7a75bb1e94a54fd7e5360 (diff) | |
download | podman-dbc4a5d85bb948a41af710804d61cdba8aac8e0b.tar.gz podman-dbc4a5d85bb948a41af710804d61cdba8aac8e0b.tar.bz2 podman-dbc4a5d85bb948a41af710804d61cdba8aac8e0b.zip |
Merge pull request #10220 from giuseppe/rm-volatile
podman: set volatile storage flag for --rm containers
Diffstat (limited to 'pkg/specgen')
-rw-r--r-- | pkg/specgen/generate/container_create.go | 3 | ||||
-rw-r--r-- | pkg/specgen/specgen.go | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/pkg/specgen/generate/container_create.go b/pkg/specgen/generate/container_create.go index 01f939022..0090156c9 100644 --- a/pkg/specgen/generate/container_create.go +++ b/pkg/specgen/generate/container_create.go @@ -200,6 +200,9 @@ func createContainerOptions(ctx context.Context, rt *libpod.Runtime, s *specgen. if s.Umask != "" { options = append(options, libpod.WithUmask(s.Umask)) } + if s.Volatile { + options = append(options, libpod.WithVolatile()) + } useSystemd := false switch s.Systemd { diff --git a/pkg/specgen/specgen.go b/pkg/specgen/specgen.go index fdcb7a0e0..5ef2b0653 100644 --- a/pkg/specgen/specgen.go +++ b/pkg/specgen/specgen.go @@ -256,6 +256,9 @@ type ContainerStorageConfig struct { // Secrets are the secrets that will be added to the container // Optional. Secrets []string `json:"secrets,omitempty"` + // Volatile specifies whether the container storage can be optimized + // at the cost of not syncing all the dirty files in memory. + Volatile bool `json:"volatile,omitempty"` } // ContainerSecurityConfig is a container's security features, including |