Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
fce3b953
Commit
fce3b953
authored
Oct 17, 2016
by
Kubernetes Submit Queue
Committed by
GitHub
Oct 17, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #34752 from ivan4th/fix-misspellings-of-receive
Automatic merge from submit-queue Fix misspellings of 'receive' Fix typos
parents
1d56ec0f
096ff3bf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
README.md
cluster/juju/layers/kubernetes/README.md
+1
-1
mustrunas_test.go
...security/podsecuritypolicy/capabilities/mustrunas_test.go
+2
-2
provider_test.go
pkg/security/podsecuritypolicy/provider_test.go
+1
-1
No files found.
cluster/juju/layers/kubernetes/README.md
View file @
fce3b953
...
...
@@ -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
rec
ie
ves three disks creates a raidz pool that is mounted at the /srv/kubernetes
rec
ei
ves 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.
...
...
pkg/security/podsecuritypolicy/capabilities/mustrunas_test.go
View file @
fce3b953
...
...
@@ -319,7 +319,7 @@ func TestValidateAdds(t *testing.T) {
continue
}
if
!
v
.
shouldPass
&&
len
(
errs
)
==
0
{
t
.
Errorf
(
"%s should have failed but rec
ie
ved no errors"
,
k
)
t
.
Errorf
(
"%s should have failed but rec
ei
ved 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 rec
ie
ved no errors"
,
k
)
t
.
Errorf
(
"%s should have failed but rec
ei
ved no errors"
,
k
)
}
}
}
pkg/security/podsecuritypolicy/provider_test.go
View file @
fce3b953
...
...
@@ -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 rec
ie
ved nil"
,
k
)
t
.
Errorf
(
"%s expected a non nil ReadOnlyRootFilesystem but rec
ei
ved 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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment