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
7ba26ba2
Commit
7ba26ba2
authored
May 18, 2018
by
Pengfei Ni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Setup docker options according to windows security context
parent
6da502e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
helpers_windows.go
pkg/kubelet/dockershim/helpers_windows.go
+14
-0
No files found.
pkg/kubelet/dockershim/helpers_windows.go
View file @
7ba26ba2
...
...
@@ -76,6 +76,9 @@ func (ds *dockerService) updateCreateConfig(
CPUPercent
:
rOpts
.
CpuMaximum
,
}
}
// Apply security context.
applyWindowsContainerSecurityContext
(
wc
.
GetSecurityContext
(),
createConfig
.
Config
,
createConfig
.
HostConfig
)
}
applyExperimentalCreateConfig
(
createConfig
,
sandboxConfig
.
Annotations
)
...
...
@@ -83,6 +86,17 @@ func (ds *dockerService) updateCreateConfig(
return
nil
}
// applyWindowsContainerSecurityContext updates docker container options according to security context.
func
applyWindowsContainerSecurityContext
(
wsc
*
runtimeapi
.
WindowsContainerSecurityContext
,
config
*
dockercontainer
.
Config
,
hc
*
dockercontainer
.
HostConfig
)
{
if
wsc
==
nil
{
return
}
if
wsc
.
GetRunAsUsername
()
!=
""
{
config
.
User
=
wsc
.
GetRunAsUsername
()
}
}
func
(
ds
*
dockerService
)
determinePodIPBySandboxID
(
sandboxID
string
,
sandbox
*
dockertypes
.
ContainerJSON
)
string
{
// Versions and feature support
// ============================
...
...
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