Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ServiceAccountName (0.33 sec)

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

    	allErrs = append(allErrs, validateHostUsers(spec, fldPath)...)
    	if len(spec.ServiceAccountName) > 0 {
    		for _, msg := range ValidateServiceAccountName(spec.ServiceAccountName, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("serviceAccountName"), spec.ServiceAccountName, msg))
    		}
    	}
    
    	if len(spec.NodeName) > 0 {
    		for _, msg := range ValidateNodeName(spec.NodeName, false) {
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // ServiceAccountName is the name of the ServiceAccount to use to run this pod.
      // More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"serviceAccountName":            "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
    	"serviceAccount":                "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// ServiceAccountName is the name of the ServiceAccount to use to run this pod.
    	// More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
    	// +optional
    	ServiceAccountName string `json:"serviceAccountName,omitempty" protobuf:"bytes,8,opt,name=serviceAccountName"`
    	// DeprecatedServiceAccount is a deprecated alias for ServiceAccountName.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // ServiceAccountName is the name of the ServiceAccount to use to run this pod.
      // More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a deprecated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ActiveDeadlineSeconds = (*int64)(unsafe.Pointer(in.ActiveDeadlineSeconds))
    	out.DNSPolicy = core.DNSPolicy(in.DNSPolicy)
    	out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
    	out.ServiceAccountName = in.ServiceAccountName
    	// INFO: in.DeprecatedServiceAccount opted out of conversion generation
    	out.AutomountServiceAccountToken = (*bool)(unsafe.Pointer(in.AutomountServiceAccountToken))
    	out.NodeName = in.NodeName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// NodeSelector is a selector which must be true for the pod to fit on a node
    	// +optional
    	NodeSelector map[string]string
    
    	// ServiceAccountName is the name of the ServiceAccount to use to run this pod
    	// The pod will be allowed to use secrets referenced by the ServiceAccount
    	ServiceAccountName string
    	// AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "serviceAccount": {
                "description": "DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
                "type": "string"
              },
              "serviceAccountName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          serviceAccountName: calico-node
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top