summaryrefslogtreecommitdiff
path: root/libpod/kube.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-09-28 17:01:22 +0200
committerValentin Rothberg <rothberg@redhat.com>2021-09-28 17:18:02 +0200
commit5d6ea90e756cd48c90d9549d25c0150c9bb5c50c (patch)
treeffe239b2f0456df0489bf99dfc9d6399bb8b3561 /libpod/kube.go
parent381ab48c2586a96932701a1fe270ebd2c32a04d4 (diff)
downloadpodman-5d6ea90e756cd48c90d9549d25c0150c9bb5c50c.tar.gz
podman-5d6ea90e756cd48c90d9549d25c0150c9bb5c50c.tar.bz2
podman-5d6ea90e756cd48c90d9549d25c0150c9bb5c50c.zip
libpod: do not call (*container).Config()
Access the container's config field directly inside of libpod instead of calling `Config()` which in turn creates expensive JSON deep copies. Accessing the field directly drops memory consumption of a simple `podman run --rm busybox true` from 1245kB to 410kB. [NO TESTS NEEDED] Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'libpod/kube.go')
-rw-r--r--libpod/kube.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/kube.go b/libpod/kube.go
index d94108cf2..d17ca1114 100644
--- a/libpod/kube.go
+++ b/libpod/kube.go
@@ -90,7 +90,7 @@ func (p *Pod) GenerateForKube(ctx context.Context) (*v1.Pod, []v1.ServicePort, e
// so set it at here
for _, ctr := range allContainers {
if !ctr.IsInfra() {
- switch ctr.Config().RestartPolicy {
+ switch ctr.config.RestartPolicy {
case define.RestartPolicyAlways:
pod.Spec.RestartPolicy = v1.RestartPolicyAlways
case define.RestartPolicyOnFailure: