Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misspellings of 'receive' #34752

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cluster/juju/layers/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ command. At this point the charm will have two raidz pools added together, both
of which could handle the loss of one disk each.

The storage code handles the addition of devices to the charm and when it
recieves three disks creates a raidz pool that is mounted at the /srv/kubernetes
receives three disks creates a raidz pool that is mounted at the /srv/kubernetes
directory by default. If you need the storage in another location you must
change the `mount-point` value in layer.yaml before the charms is deployed.

Expand Down
4 changes: 2 additions & 2 deletions pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ func TestValidateAdds(t *testing.T) {
continue
}
if !v.shouldPass && len(errs) == 0 {
t.Errorf("%s should have failed but recieved no errors", k)
t.Errorf("%s should have failed but received no errors", k)
}
}
}
Expand Down Expand Up @@ -382,7 +382,7 @@ func TestValidateDrops(t *testing.T) {
continue
}
if !v.shouldPass && len(errs) == 0 {
t.Errorf("%s should have failed but recieved no errors", k)
t.Errorf("%s should have failed but received no errors", k)
}
}
}
2 changes: 1 addition & 1 deletion pkg/security/podsecuritypolicy/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ func TestGenerateContainerSecurityContextReadOnlyRootFS(t *testing.T) {
t.Errorf("%s expected a nil ReadOnlyRootFilesystem but got %t", k, *sc.ReadOnlyRootFilesystem)
}
if v.expected != nil && sc.ReadOnlyRootFilesystem == nil {
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem but recieved nil", k)
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem but received nil", k)
}
if v.expected != nil && sc.ReadOnlyRootFilesystem != nil && (*v.expected != *sc.ReadOnlyRootFilesystem) {
t.Errorf("%s expected a non nil ReadOnlyRootFilesystem set to %t but got %t", k, *v.expected, *sc.ReadOnlyRootFilesystem)
Expand Down