Merge pull request #77419 from alculquicondor/feature/fake-runtime-handler

Store runtimeHandler for the PodSandboxStatus in FakeRuntimeService
This commit is contained in:
Kubernetes Prow Robot
2019-05-07 15:55:11 -07:00
committed by GitHub

View File

@@ -183,6 +183,7 @@ func (r *FakeRuntimeService) RunPodSandbox(config *runtimeapi.PodSandboxConfig,
},
Labels: config.Labels,
Annotations: config.Annotations,
RuntimeHandler: runtimeHandler,
},
RuntimeHandler: runtimeHandler,
}
@@ -259,6 +260,7 @@ func (r *FakeRuntimeService) ListPodSandbox(filter *runtimeapi.PodSandboxFilter)
CreatedAt: s.CreatedAt,
Labels: s.Labels,
Annotations: s.Annotations,
RuntimeHandler: s.RuntimeHandler,
})
}