diff --git a/cluster/juju/layers/kubernetes/README.md b/cluster/juju/layers/kubernetes/README.md index ff23f71e998..55ccb3a77ef 100644 --- a/cluster/juju/layers/kubernetes/README.md +++ b/cluster/juju/layers/kubernetes/README.md @@ -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. diff --git a/pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go b/pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go index 8afb8ac9be6..1bdd182adf1 100644 --- a/pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go +++ b/pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go @@ -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) } } } @@ -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) } } } diff --git a/pkg/security/podsecuritypolicy/provider_test.go b/pkg/security/podsecuritypolicy/provider_test.go index ea06aa4d7ae..c18333ec748 100644 --- a/pkg/security/podsecuritypolicy/provider_test.go +++ b/pkg/security/podsecuritypolicy/provider_test.go @@ -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)