Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for windowsOptions (0.25 sec)

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

    			allErrs = append(allErrs, field.Invalid(fieldPath.Child("gmsaCredentialSpecName"), windowsOptions.GMSACredentialSpecName, msg))
    		}
    	}
    
    	if windowsOptions.GMSACredentialSpec != nil {
    		if l := len(*windowsOptions.GMSACredentialSpec); l == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.SELinuxOptions = (*core.SELinuxOptions)(unsafe.Pointer(in.SELinuxOptions))
    	out.WindowsOptions = (*core.WindowsSecurityContextOptions)(unsafe.Pointer(in.WindowsOptions))
    	out.RunAsUser = (*int64)(unsafe.Pointer(in.RunAsUser))
    	out.RunAsGroup = (*int64)(unsafe.Pointer(in.RunAsGroup))
    	out.RunAsNonRoot = (*bool)(unsafe.Pointer(in.RunAsNonRoot))
    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/types.go

    	// Note that this field cannot be set when spec.os.name is linux.
    	// +optional
    	WindowsOptions *WindowsSecurityContextOptions `json:"windowsOptions,omitempty" protobuf:"bytes,8,opt,name=windowsOptions"`
    	// The UID to run the entrypoint of the container process.
    	// Defaults to user specified in image metadata if unspecified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Note that this field cannot be set when spec.os.name is linux.
      // +optional
      optional WindowsSecurityContextOptions windowsOptions = 8;
    
      // The UID to run the entrypoint of the container process.
      // Defaults to user specified in image metadata if unspecified.
      // May also be set in SecurityContext.  If set in both SecurityContext and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// Specifies the OS of the containers in the pod.
    	// Some pod and container fields are restricted if this is set.
    	//
    	// If the OS field is set to linux, the following fields must be unset:
    	// - securityContext.windowsOptions
    	//
    	// If the OS field is set to windows, following fields must be unset:
    	// - spec.hostPID
    	// - spec.hostIPC
    	// - spec.hostUsers
    	// - spec.securityContext.appArmorProfile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"windowsOptions":           "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // Note that this field cannot be set when spec.os.name is linux.
      // +optional
      optional WindowsSecurityContextOptions windowsOptions = 8;
    
      // The UID to run the entrypoint of the container process.
      // Defaults to user specified in image metadata if unspecified.
      // May also be set in SecurityContext.  If set in both SecurityContext and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.16.md

    - Move CSI volume expansion to beta. ([#81467](https://github.com/kubernetes/kubernetes/pull/81467), [@bertinatto](https://github.com/bertinatto))
    - Added E2E tests validating WindowsOptions.RunAsUserName. ([#79539](https://github.com/kubernetes/kubernetes/pull/79539), [@bclau](https://github.com/bclau))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "windowsOptions": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top