Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for impersonation (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    		expectedUser            user.Info
    		expectedCode            int
    	}{
    		{
    			name: "not-impersonating",
    			user: &user.DefaultInfo{
    				Name: "tester",
    			},
    			expectedUser: &user.DefaultInfo{
    				Name: "tester",
    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "impersonating-error",
    			user: &user.DefaultInfo{
    				Name: "tester",
    			},
    			impersonationUser: "anyone",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.28
    
    // SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request.
    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    type SelfSubjectReview struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

            "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
            "properties": {
              "apiVersion": {
    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. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

            "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "description": "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  6. build/root/Makefile

    #   WHAT: List of tests to run, check test/cmd/legacy-script.sh for names.
    #     For example, WHAT=deployment will run run_deployment_tests function.
    # Example:
    #   make test-cmd
    #   make test-cmd WHAT="deployment impersonation"
    endef
    .PHONY: test-cmd
    ifeq ($(PRINT_HELP),y)
    test-cmd:
    	echo "$$TEST_CMD_HELP_INFO"
    else
    test-cmd:
    	hack/make-rules/test-cmd.sh
    endif
    
    define CLEAN_HELP_INFO
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    
    	handler = filterlatency.TrackCompleted(handler)
    	handler = genericapifilters.WithImpersonation(handler, c.Authorization.Authorizer, c.Serializer)
    	handler = filterlatency.TrackStarted(handler, c.TracerProvider, "impersonation")
    
    	handler = filterlatency.TrackCompleted(handler)
    	handler = genericapifilters.WithAudit(handler, c.AuditBackend, c.AuditPolicyRuleEvaluator, c.LongRunningFunc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top