Correct spelling mistake ("sanbdox" to "sandbox")

Signed-off-by: Shane Jennings <superzinbo@gmail.com>
This commit is contained in:
Shane Jennings 2022-06-07 10:55:15 +01:00 committed by GitHub
parent c1bcabb454
commit 6190b0f04b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ func (c *criService) RunPodSandbox(ctx context.Context, r *runtime.RunPodSandbox
// Generate spec options that will be applied to the spec later. // Generate spec options that will be applied to the spec later.
specOpts, err := c.sandboxContainerSpecOpts(config, &image.ImageSpec.Config) specOpts, err := c.sandboxContainerSpecOpts(config, &image.ImageSpec.Config)
if err != nil { if err != nil {
return nil, fmt.Errorf("failed to generate sanbdox container spec options: %w", err) return nil, fmt.Errorf("failed to generate sandbox container spec options: %w", err)
} }
sandboxLabels := buildLabels(config.Labels, image.ImageSpec.Config.Labels, containerKindSandbox) sandboxLabels := buildLabels(config.Labels, image.ImageSpec.Config.Labels, containerKindSandbox)