Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 209 for userInfo (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    						RequestSubResource: "",
    						Name:               "myname",
    						Namespace:          "myns",
    						Operation:          "UPDATE",
    						UserInfo: authenticationv1.UserInfo{
    							Username: "myuser",
    							UID:      "myuid",
    							Groups:   []string{"mygroup"},
    							Extra:    map[string]authenticationv1.ExtraValue{"extrakey": {"value1", "value2"}},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		span.AddEvent("About to delete object from database")
    		wasDeleted := true
    		userInfo, _ := request.UserFrom(ctx)
    		staticAdmissionAttrs := admission.NewAttributesRecord(nil, nil, scope.Kind, namespace, name, scope.Resource, scope.Subresource, admission.Delete, options, dryrun.IsDryRun(options.DryRun), userInfo)
    		result, err := finisher.FinishRequest(ctx, func() (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. pkg/apis/admission/zz_generated.deepcopy.go

    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.RequestResource != nil {
    		in, out := &in.RequestResource, &out.RequestResource
    		*out = new(v1.GroupVersionResource)
    		**out = **in
    	}
    	in.UserInfo.DeepCopyInto(&out.UserInfo)
    	if in.Object != nil {
    		out.Object = in.Object.DeepCopyObject()
    	}
    	if in.OldObject != nil {
    		out.OldObject = in.OldObject.DeepCopyObject()
    	}
    	if in.DryRun != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1beta1/zz_generated.deepcopy.go

    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.RequestResource != nil {
    		in, out := &in.RequestResource, &out.RequestResource
    		*out = new(v1.GroupVersionResource)
    		**out = **in
    	}
    	in.UserInfo.DeepCopyInto(&out.UserInfo)
    	in.Object.DeepCopyInto(&out.Object)
    	in.OldObject.DeepCopyInto(&out.OldObject)
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = new(bool)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. pkg/apis/admission/types.go

    	// Operation is the operation being performed. This may be different than the operation
    	// requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
    	Operation Operation
    	// UserInfo is information about the requesting user
    	UserInfo authentication.UserInfo
    	// Object is the object from the incoming request.
    	// +optional
    	Object runtime.Object
    	// OldObject is the existing object. Only populated for DELETE and UPDATE requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1.AdmissionReview.yaml

        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
      uid: uidValue
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
        username: usernameValue
    response:
      allowed: true
      auditAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1beta1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
      uid: uidValue
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
        username: usernameValue
    response:
      allowed: true
      auditAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.RequestResource != nil {
    		in, out := &in.RequestResource, &out.RequestResource
    		*out = new(metav1.GroupVersionResource)
    		**out = **in
    	}
    	in.UserInfo.DeepCopyInto(&out.UserInfo)
    	in.Object.DeepCopyInto(&out.Object)
    	in.OldObject.DeepCopyInto(&out.OldObject)
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = new(bool)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top