Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProcMount (0.29 sec)

  1. pkg/api/pod/util_test.go

    }
    
    func TestDropProcMount(t *testing.T) {
    	procMount := api.UnmaskedProcMount
    	defaultProcMount := api.DefaultProcMount
    	podWithProcMount := func() *api.Pod {
    		return &api.Pod{
    			Spec: api.PodSpec{
    				RestartPolicy:  api.RestartPolicyNever,
    				Containers:     []api.Container{{Name: "container1", Image: "testimage", SecurityContext: &api.SecurityContext{ProcMount: &procMount}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.AllowPrivilegeEscalation != nil {
    		in, out := &in.AllowPrivilegeEscalation, &out.AllowPrivilegeEscalation
    		*out = new(bool)
    		**out = **in
    	}
    	if in.ProcMount != nil {
    		in, out := &in.ProcMount, &out.ProcMount
    		*out = new(ProcMountType)
    		**out = **in
    	}
    	if in.SeccompProfile != nil {
    		in, out := &in.SeccompProfile, &out.SeccompProfile
    		*out = new(SeccompProfile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.AllowPrivilegeEscalation != nil {
    		in, out := &in.AllowPrivilegeEscalation, &out.AllowPrivilegeEscalation
    		*out = new(bool)
    		**out = **in
    	}
    	if in.ProcMount != nil {
    		in, out := &in.ProcMount, &out.ProcMount
    		*out = new(ProcMountType)
    		**out = **in
    	}
    	if in.SeccompProfile != nil {
    		in, out := &in.SeccompProfile, &out.SeccompProfile
    		*out = new(SeccompProfile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top