Merge pull request #128902 from champly/fix-params-typo

Fix CRI StopPodSandbox params typo
This commit is contained in:
Kubernetes Prow Robot 2024-12-12 09:58:26 +01:00 committed by GitHub
commit 263383e28d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,7 +72,7 @@ type PodSandboxManager interface {
RunPodSandbox(ctx context.Context, config *runtimeapi.PodSandboxConfig, runtimeHandler string) (string, error)
// StopPodSandbox stops the sandbox. If there are any running containers in the
// sandbox, they should be force terminated.
StopPodSandbox(pctx context.Context, odSandboxID string) error
StopPodSandbox(ctx context.Context, podSandboxID string) error
// RemovePodSandbox removes the sandbox. If there are running containers in the
// sandbox, they should be forcibly removed.
RemovePodSandbox(ctx context.Context, podSandboxID string) error