Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 145 for ProcMount (0.33 sec)

  1. pkg/apis/core/validation/validation_test.go

    	noRunAsUser := fullValidSC()
    	noRunAsUser.RunAsUser = nil
    
    	procMountSet := fullValidSC()
    	defPmt := core.DefaultProcMount
    	procMountSet.ProcMount = &defPmt
    
    	umPmt := core.UnmaskedProcMount
    	procMountUnmasked := fullValidSC()
    	procMountUnmasked.ProcMount = &umPmt
    
    	successCases := map[string]struct {
    		sc        *core.SecurityContext
    		hostUsers bool
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ReadOnlyRootFilesystem = (*bool)(unsafe.Pointer(in.ReadOnlyRootFilesystem))
    	out.AllowPrivilegeEscalation = (*bool)(unsafe.Pointer(in.AllowPrivilegeEscalation))
    	out.ProcMount = (*core.ProcMountType)(unsafe.Pointer(in.ProcMount))
    	out.SeccompProfile = (*core.SeccompProfile)(unsafe.Pointer(in.SeccompProfile))
    	out.AppArmorProfile = (*core.AppArmorProfile)(unsafe.Pointer(in.AppArmorProfile))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // - spec.containers[*].securityContext.readOnlyRootFilesystem
      // - spec.containers[*].securityContext.privileged
      // - spec.containers[*].securityContext.allowPrivilegeEscalation
      // - spec.containers[*].securityContext.procMount
      // - spec.containers[*].securityContext.runAsUser
      // - spec.containers[*].securityContext.runAsGroup
      // +optional
      optional PodOS os = 36;
    
      // Use the host's user namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "procMount": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#122724](https://github.com/kubernetes/kubernetes/pull/122724), [@nayihz](https://github.com/nayihz))
    - In the Pod API, setting the alpha `procMount` field to `Unmasked` in a container now required setting `spec.hostUsers=false` as well.
       ([#123520](https://github.com/kubernetes/kubernetes/pull/123520), [@haircommander](https://github.com/haircommander))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    - Resolved spurious rollouts of workload controllers when upgrading the API server, due to incorrect defaulting of an alpha procMount field in pods. ([#78885](https://github.com/kubernetes/kubernetes/pull/78885), [@liggitt](https://github.com/liggitt))
    
    ### Auth
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "procMount": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x52
    	}
    	if m.ProcMount != nil {
    		i -= len(*m.ProcMount)
    		copy(dAtA[i:], *m.ProcMount)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.ProcMount)))
    		i--
    		dAtA[i] = 0x4a
    	}
    	if m.RunAsGroup != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.RunAsGroup))
    		i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "boolean"
              },
              "procMount": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.14.md

    * Resolves spurious rollouts of workload controllers when upgrading the API server, due to incorrect defaulting of an alpha procMount field in pods ([#78883](https://github.com/kubernetes/kubernetes/pull/78883), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
Back to top