summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2021-04-16 14:41:15 -0400
committerMatthew Heon <mheon@redhat.com>2021-04-16 14:41:15 -0400
commit9148568b2610c6d1fa03d90acf1f77f7bcea6ba4 (patch)
treecbc1bebde8b80c8da472865fbe4a85a0146e59bf
parentfe59da542097181b79a84b56b94f0029309cf31b (diff)
downloadpodman-9148568b2610c6d1fa03d90acf1f77f7bcea6ba4.tar.gz
podman-9148568b2610c6d1fa03d90acf1f77f7bcea6ba4.tar.bz2
podman-9148568b2610c6d1fa03d90acf1f77f7bcea6ba4.zip
Fix lint
Signed-off-by: Matthew Heon <mheon@redhat.com>
-rw-r--r--pkg/domain/infra/abi/play.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go
index 6e705ddd2..382ec4a4b 100644
--- a/pkg/domain/infra/abi/play.go
+++ b/pkg/domain/infra/abi/play.go
@@ -261,17 +261,17 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY
}
specgenOpts := kube.CtrSpecGenOptions{
- Container: container,
- Image: newImage,
- Volumes: volumes,
- PodID: pod.ID(),
- PodName: podName,
- PodInfraID: podInfraID,
- ConfigMaps: configMaps,
- SeccompPaths: seccompPaths,
- RestartPolicy: ctrRestartPolicy,
- NetNSIsHost: p.NetNS.IsHost(),
- LogDriver: options.LogDriver,
+ Container: container,
+ Image: newImage,
+ Volumes: volumes,
+ PodID: pod.ID(),
+ PodName: podName,
+ PodInfraID: podInfraID,
+ ConfigMaps: configMaps,
+ SeccompPaths: seccompPaths,
+ RestartPolicy: ctrRestartPolicy,
+ NetNSIsHost: p.NetNS.IsHost(),
+ LogDriver: options.LogDriver,
}
specGen, err := kube.ToSpecGen(ctx, &specgenOpts)
if err != nil {