Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for UIDs (0.35 sec)

  1. pkg/controller/job/job_controller.go

    	logger := klog.FromContext(ctx)
    	errCh := make(chan error, len(pods))
    	succeeded := make([]bool, len(pods))
    	uids := make([]string, len(pods))
    	for i, p := range pods {
    		uids[i] = string(p.UID)
    	}
    	if jobKey != "" {
    		err := jm.finalizerExpectations.expectFinalizersRemoved(logger, jobKey, uids)
    		if err != nil {
    			return succeeded, fmt.Errorf("setting expected removed finalizers: %w", err)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	UncountedTerminatedPods *UncountedTerminatedPods
    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    	// +optional
    	Failed []types.UID
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

              },
              "uid": {
                "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
                "type": "string"
              },
              "username": {
                "description": "The name that uniquely identifies this user among all active users.",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    				userExtra[extraKey] = append(userExtra[extraKey], extraValue)
    
    			case authenticationv1.SchemeGroupVersion.WithKind("UID").GroupKind():
    				uid = string(impersonationRequest.Name)
    				actingAsAttributes.Resource = "uids"
    
    			default:
    				klog.V(4).InfoS("unknown impersonation request type", "request", impersonationRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. pkg/apis/authentication/types.go

    	Username string
    	// A unique value that identifies this user across time. If this user is
    	// deleted and another user by the same name is added, they will have
    	// different UIDs.
    	UID string
    	// The names of groups this user is a part of.
    	Groups []string
    	// Any additional information provided by the authenticator.
    	Extra map[string]ExtraValue
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/generated.proto

      // +optional
      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
      // +optional
      optional string uid = 2;
    
      // The names of groups this user is a part of.
      // +optional
      // +listType=atomic
      repeated string groups = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"uid":      "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
    	"groups":   "The names of groups this user is a part of.",
    	"extra":    "Any additional information provided by the authenticator.",
    }
    
    func (UserInfo) SwaggerDoc() map[string]string {
    	return map_UserInfo
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID `json:"succeeded,omitempty" protobuf:"bytes,1,rep,name=succeeded,casttype=k8s.io/apimachinery/pkg/types.UID"`
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                          type: string
                        uid:
                          description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
                          type: string
                      type: object
                  required:
                    - deletionPolicy
                    - driver
                    - source
                    - volumeSnapshotRef
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

              },
              "uid": {
                "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
                "type": "string"
              },
              "username": {
                "description": "The name that uniquely identifies this user among all active users.",
                "type": "string"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top