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
4e74211a
Commit
4e74211a
authored
Nov 15, 2017
by
Slava Semushin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pkg/securitycontext/util.go(InternalDetermineEffectiveSecurityContext): remove unused function.
parent
1ced91f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
78 deletions
+0
-78
util.go
pkg/securitycontext/util.go
+0
-78
No files found.
pkg/securitycontext/util.go
View file @
4e74211a
...
@@ -21,7 +21,6 @@ import (
...
@@ -21,7 +21,6 @@ import (
"strings"
"strings"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
api
"k8s.io/kubernetes/pkg/apis/core"
)
)
// HasPrivilegedRequest returns the value of SecurityContext.Privileged, taking into account
// HasPrivilegedRequest returns the value of SecurityContext.Privileged, taking into account
...
@@ -165,83 +164,6 @@ func securityContextFromPodSecurityContext(pod *v1.Pod) *v1.SecurityContext {
...
@@ -165,83 +164,6 @@ func securityContextFromPodSecurityContext(pod *v1.Pod) *v1.SecurityContext {
return
synthesized
return
synthesized
}
}
// TODO: remove the duplicate code
func
InternalDetermineEffectiveSecurityContext
(
pod
*
api
.
Pod
,
container
*
api
.
Container
)
*
api
.
SecurityContext
{
effectiveSc
:=
internalSecurityContextFromPodSecurityContext
(
pod
)
containerSc
:=
container
.
SecurityContext
if
effectiveSc
==
nil
&&
containerSc
==
nil
{
return
nil
}
if
effectiveSc
!=
nil
&&
containerSc
==
nil
{
return
effectiveSc
}
if
effectiveSc
==
nil
&&
containerSc
!=
nil
{
return
containerSc
}
if
containerSc
.
SELinuxOptions
!=
nil
{
effectiveSc
.
SELinuxOptions
=
new
(
api
.
SELinuxOptions
)
*
effectiveSc
.
SELinuxOptions
=
*
containerSc
.
SELinuxOptions
}
if
containerSc
.
Capabilities
!=
nil
{
effectiveSc
.
Capabilities
=
new
(
api
.
Capabilities
)
*
effectiveSc
.
Capabilities
=
*
containerSc
.
Capabilities
}
if
containerSc
.
Privileged
!=
nil
{
effectiveSc
.
Privileged
=
new
(
bool
)
*
effectiveSc
.
Privileged
=
*
containerSc
.
Privileged
}
if
containerSc
.
RunAsUser
!=
nil
{
effectiveSc
.
RunAsUser
=
new
(
int64
)
*
effectiveSc
.
RunAsUser
=
*
containerSc
.
RunAsUser
}
if
containerSc
.
RunAsNonRoot
!=
nil
{
effectiveSc
.
RunAsNonRoot
=
new
(
bool
)
*
effectiveSc
.
RunAsNonRoot
=
*
containerSc
.
RunAsNonRoot
}
if
containerSc
.
ReadOnlyRootFilesystem
!=
nil
{
effectiveSc
.
ReadOnlyRootFilesystem
=
new
(
bool
)
*
effectiveSc
.
ReadOnlyRootFilesystem
=
*
containerSc
.
ReadOnlyRootFilesystem
}
if
containerSc
.
AllowPrivilegeEscalation
!=
nil
{
effectiveSc
.
AllowPrivilegeEscalation
=
new
(
bool
)
*
effectiveSc
.
AllowPrivilegeEscalation
=
*
containerSc
.
AllowPrivilegeEscalation
}
return
effectiveSc
}
func
internalSecurityContextFromPodSecurityContext
(
pod
*
api
.
Pod
)
*
api
.
SecurityContext
{
if
pod
.
Spec
.
SecurityContext
==
nil
{
return
nil
}
synthesized
:=
&
api
.
SecurityContext
{}
if
pod
.
Spec
.
SecurityContext
.
SELinuxOptions
!=
nil
{
synthesized
.
SELinuxOptions
=
&
api
.
SELinuxOptions
{}
*
synthesized
.
SELinuxOptions
=
*
pod
.
Spec
.
SecurityContext
.
SELinuxOptions
}
if
pod
.
Spec
.
SecurityContext
.
RunAsUser
!=
nil
{
synthesized
.
RunAsUser
=
new
(
int64
)
*
synthesized
.
RunAsUser
=
*
pod
.
Spec
.
SecurityContext
.
RunAsUser
}
if
pod
.
Spec
.
SecurityContext
.
RunAsNonRoot
!=
nil
{
synthesized
.
RunAsNonRoot
=
new
(
bool
)
*
synthesized
.
RunAsNonRoot
=
*
pod
.
Spec
.
SecurityContext
.
RunAsNonRoot
}
return
synthesized
}
// AddNoNewPrivileges returns if we should add the no_new_privs option.
// AddNoNewPrivileges returns if we should add the no_new_privs option.
func
AddNoNewPrivileges
(
sc
*
v1
.
SecurityContext
)
bool
{
func
AddNoNewPrivileges
(
sc
*
v1
.
SecurityContext
)
bool
{
if
sc
==
nil
{
if
sc
==
nil
{
...
...
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