diff options
| author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-26 10:53:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-26 10:53:26 +0000 |
| commit | 4d75df8be380cff4df082bd6fc2f05aa2c433723 (patch) | |
| tree | 99ef73a78541017921848d11729384e019d2f1ff /pkg/domain/infra/abi/play.go | |
| parent | f82f93c9bdaca49765019966df43384d34469575 (diff) | |
| parent | acd8b4900058c364a660a4a01319a8d9cd097896 (diff) | |
| download | podman-4d75df8be380cff4df082bd6fc2f05aa2c433723.tar.gz podman-4d75df8be380cff4df082bd6fc2f05aa2c433723.tar.bz2 podman-4d75df8be380cff4df082bd6fc2f05aa2c433723.zip | |
Merge pull request #12086 from rhatdan/log
Add support to play kube for --log-opt
Diffstat (limited to 'pkg/domain/infra/abi/play.go')
| -rw-r--r-- | pkg/domain/infra/abi/play.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go index 751d6cc05..4d21751d1 100644 --- a/pkg/domain/infra/abi/play.go +++ b/pkg/domain/infra/abi/play.go @@ -333,6 +333,7 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY NetNSIsHost: p.NetNS.IsHost(), SecretsManager: secretsManager, LogDriver: options.LogDriver, + LogOptions: options.LogOptions, Labels: labels, InitContainerType: define.AlwaysInitContainer, } @@ -371,6 +372,7 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY NetNSIsHost: p.NetNS.IsHost(), SecretsManager: secretsManager, LogDriver: options.LogDriver, + LogOptions: options.LogOptions, Labels: labels, } specGen, err := kube.ToSpecGen(ctx, &specgenOpts) |
