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
a3cb9ee1
Commit
a3cb9ee1
authored
Feb 28, 2020
by
Erik Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify SELinux detection and add --disable-selinux flag
parent
d049a5d0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
7 deletions
+29
-7
config.go
pkg/agent/config/config.go
+2
-0
containerd.go
pkg/agent/containerd/containerd.go
+12
-2
selinux.go
pkg/agent/containerd/selinux.go
+5
-5
agent.go
pkg/cli/cmds/agent.go
+8
-0
server.go
pkg/cli/cmds/server.go
+1
-0
types.go
pkg/daemons/config/types.go
+1
-0
No files found.
pkg/agent/config/config.go
View file @
a3cb9ee1
...
...
@@ -397,6 +397,7 @@ func get(envInfo *cmds.Agent) (*config.Node, error) {
nodeConfig
:=
&
config
.
Node
{
Docker
:
envInfo
.
Docker
,
DisableSELinux
:
envInfo
.
DisableSELinux
,
ContainerRuntimeEndpoint
:
envInfo
.
ContainerRuntimeEndpoint
,
FlannelBackend
:
controlConfig
.
FlannelBackend
,
}
...
...
@@ -474,6 +475,7 @@ func get(envInfo *cmds.Agent) (*config.Node, error) {
nodeConfig
.
AgentConfig
.
DisableCCM
=
controlConfig
.
DisableCCM
nodeConfig
.
AgentConfig
.
DisableNPC
=
controlConfig
.
DisableNPC
nodeConfig
.
AgentConfig
.
Rootless
=
envInfo
.
Rootless
nodeConfig
.
DisableSELinux
=
envInfo
.
DisableSELinux
return
nodeConfig
,
nil
}
...
...
pkg/agent/containerd/containerd.go
View file @
a3cb9ee1
...
...
@@ -171,11 +171,21 @@ func setupContainerdConfig(ctx context.Context, cfg *config.Node) error {
PrivateRegistryConfig
:
privRegistries
,
}
sel
inux
,
err
:=
selinuxEnabled
()
sel
Enabled
,
selConfigured
,
err
:=
selinuxStatus
()
if
err
!=
nil
{
return
errors
.
Wrap
(
err
,
"failed to detect selinux"
)
}
containerdConfig
.
SELinuxEnabled
=
selinux
if
cfg
.
DisableSELinux
{
containerdConfig
.
SELinuxEnabled
=
false
if
selEnabled
{
logrus
.
Warn
(
"SELinux is enabled for system but has been disabled for containerd by override"
)
}
}
else
{
containerdConfig
.
SELinuxEnabled
=
selEnabled
}
if
containerdConfig
.
SELinuxEnabled
&&
!
selConfigured
{
logrus
.
Warnf
(
"SELinux is enabled for k3s but process is not running in context '%s', k3s-selinux policy may need to be applied"
,
SELinuxContextType
)
}
containerdTemplateBytes
,
err
:=
ioutil
.
ReadFile
(
cfg
.
Containerd
.
Template
)
if
err
==
nil
{
...
...
pkg/agent/containerd/selinux.go
View file @
a3cb9ee1
...
...
@@ -8,20 +8,20 @@ const (
SELinuxContextType
=
"container_runtime_t"
)
func
selinux
Enabled
()
(
bool
,
error
)
{
func
selinux
Status
()
(
bool
,
bool
,
error
)
{
if
!
selinux
.
GetEnabled
()
{
return
false
,
nil
return
false
,
false
,
nil
}
label
,
err
:=
selinux
.
CurrentLabel
()
if
err
!=
nil
{
return
false
,
err
return
true
,
false
,
err
}
ctx
,
err
:=
selinux
.
NewContext
(
label
)
if
err
!=
nil
{
return
false
,
err
return
true
,
false
,
err
}
return
ctx
[
"type"
]
==
SELinuxContextType
,
nil
return
true
,
ctx
[
"type"
]
==
SELinuxContextType
,
nil
}
pkg/cli/cmds/agent.go
View file @
a3cb9ee1
...
...
@@ -28,6 +28,7 @@ type Agent struct {
Rootless
bool
RootlessAlreadyUnshared
bool
WithNodeID
bool
DisableSELinux
bool
AgentShared
ExtraKubeletArgs
cli
.
StringSlice
ExtraKubeProxyArgs
cli
.
StringSlice
...
...
@@ -127,6 +128,12 @@ var (
Usage
:
"(agent/node) Registering and starting kubelet with set of labels"
,
Value
:
&
AgentConfig
.
Labels
,
}
DisableSELinuxFlag
=
cli
.
BoolFlag
{
Name
:
"disable-selinux"
,
Usage
:
"(agent/node) Disable SELinux in containerd if currently enabled"
,
Hidden
:
true
,
Destination
:
&
AgentConfig
.
DisableSELinux
,
}
)
func
NewAgentCommand
(
action
func
(
ctx
*
cli
.
Context
)
error
)
cli
.
Command
{
...
...
@@ -169,6 +176,7 @@ func NewAgentCommand(action func(ctx *cli.Context) error) cli.Command {
NodeLabels
,
NodeTaints
,
DockerFlag
,
DisableSELinuxFlag
,
CRIEndpointFlag
,
PauseImageFlag
,
PrivateRegistryFlag
,
...
...
pkg/cli/cmds/server.go
View file @
a3cb9ee1
...
...
@@ -216,6 +216,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
NodeLabels
,
NodeTaints
,
DockerFlag
,
DisableSELinuxFlag
,
CRIEndpointFlag
,
PauseImageFlag
,
PrivateRegistryFlag
,
...
...
pkg/daemons/config/types.go
View file @
a3cb9ee1
...
...
@@ -25,6 +25,7 @@ type Node struct {
Docker
bool
ContainerRuntimeEndpoint
string
NoFlannel
bool
DisableSELinux
bool
FlannelBackend
string
FlannelConf
string
FlannelConfOverride
bool
...
...
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