mirror of https://github.com/k3s-io/k3s
66 lines
1.9 KiB
Go
66 lines
1.9 KiB
Go
![]() |
/*
|
||
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
/* This test check that SecurityContext parameters specified at the
|
||
|
* pod or the container level work as intended. These tests cannot be
|
||
|
* run when the 'SecurityContextDeny' addmissioin controller is not used
|
||
|
* so they are skipped by default.
|
||
|
*/
|
||
|
|
||
|
package e2e
|
||
|
|
||
|
import (
|
||
|
"k8s.io/kubernetes/pkg/api"
|
||
|
"k8s.io/kubernetes/pkg/util"
|
||
|
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
)
|
||
|
|
||
|
func getSecurityContextTestPod() *api.Pod {
|
||
|
podName := "security-context-" + string(util.NewUUID())
|
||
|
pod := &api.Pod{
|
||
|
ObjectMeta: api.ObjectMeta{
|
||
|
Name: podName,
|
||
|
Labels: map[string]string{"name": podName},
|
||
|
},
|
||
|
Spec: api.PodSpec{
|
||
|
SecurityContext: &api.PodSecurityContext{},
|
||
|
Containers: []api.Container{
|
||
|
{
|
||
|
Name: "test-container",
|
||
|
Image: "gcr.io/google_containers/busybox",
|
||
|
},
|
||
|
},
|
||
|
RestartPolicy: api.RestartPolicyNever,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return pod
|
||
|
}
|
||
|
|
||
|
var _ = Describe("[Skipped] Security Context", func() {
|
||
|
framework := NewFramework("security-context")
|
||
|
|
||
|
It("should support pod.Spec.SecurityContext.SupplementalGroups", func() {
|
||
|
pod := getSecurityContextTestPod()
|
||
|
pod.Spec.Containers[0].Command = []string{"id", "-G"}
|
||
|
pod.Spec.SecurityContext.SupplementalGroups = []int64{1234, 5678}
|
||
|
groups := []string{"1234", "5678"}
|
||
|
framework.TestContainerOutput("pod.Spec.SecurityContext.SupplementalGroups", pod, 0, groups)
|
||
|
})
|
||
|
|
||
|
})
|