Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,061 for claim (0.07 sec)

  1. docs/sts/keycloak.md

      - Save
    
    - Go to Clients
      - Click on `account`
      - Mappers
      - Create
        - `Name` with any text
        - `Mapper Type` is `User Attribute`
        - `User Attribute` is `policy`
        - `Token Claim Name` is `policy`
        - `Claim JSON Type` is `string`
      - Save
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. docs/sts/casdoor.md

    client_id     (string)    unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"
    claim_name    (string)    JWT canned policy claim name, defaults to "policy"
    claim_prefix  (string)    JWT claim namespace prefix e.g. "customer1/"
    scopes        (csv)       Comma separated list of OpenID scopes for server, defaults to advertised scopes from discovery document e.g. "email,admin"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	podWithTwoPVCs := st.MakePod().Name("pod-with-two-pvcs").Namespace(metav1.NamespaceDefault).PVC("claim-with-rwop-1").PVC("claim-with-rwop-2").Node("node-1").Obj()
    	podWithOneConflict := st.MakePod().Name("pod-with-one-conflict").Namespace(metav1.NamespaceDefault).PVC("claim-with-rwop-1").Node("node-1").Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. pkg/controller/controller_ref_manager_test.go

    		claimed []*v1.Pod
    		patches int
    	}
    	var tests = []test{
    		func() test {
    			controller := v1.ReplicationController{}
    			controller.Namespace = metav1.NamespaceDefault
    			return test{
    				name: "Claim pods with correct label",
    				manager: NewPodControllerRefManager(&FakePodControl{},
    					&controller,
    					productionLabelSelector,
    					controllerKind,
    					func(ctx context.Context) error { return nil }),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    }
    
    // PrefixedClaimOrExpression provides the configuration for a single prefixed claim or expression.
    type PrefixedClaimOrExpression struct {
    	Claim  string
    	Prefix *string
    
    	Expression string
    }
    
    // ClaimOrExpression provides the configuration for a single claim or expression.
    type ClaimOrExpression struct {
    	Claim      string
    	Expression string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication.go

    	oidcCAFileFlag         = "oidc-ca-file"
    	oidcUsernameClaimFlag  = "oidc-username-claim"
    	oidcUsernamePrefixFlag = "oidc-username-prefix"
    	oidcGroupsClaimFlag    = "oidc-groups-claim"
    	oidcGroupsPrefixFlag   = "oidc-groups-prefix"
    	oidcSigningAlgsFlag    = "oidc-signing-algs"
    	oidcRequiredClaimFlag  = "oidc-required-claim"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    temporary credentials generated in the AssumeRoleWithWebIdentity call.
    
    2. `id_token` claims: When the role policy is not configured, MinIO looks for a specific claim in the `id_token` (JWT) returned by the OpenID provider in the STS request. The default claim is `policy` and can be overridden by the `claim_name` configuration parameter or the `MINIO_IDENTITY_OPENID_CLAIM_NAME` environment variable. The claim value can be a string (comma-separated list) or an array of IAM access policy names defined...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. pkg/apis/core/helper/helpers.go

    func GetPersistentVolumeClaimClass(claim *core.PersistentVolumeClaim) string {
    	// Use beta annotation first
    	if class, found := claim.Annotations[core.BetaStorageClassAnnotation]; found {
    		return class
    	}
    
    	if claim.Spec.StorageClassName != nil {
    		return *claim.Spec.StorageClassName
    	}
    
    	return ""
    }
    
    // PersistentVolumeClaimHasClass returns true if given claim has set StorageClassName field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. tests/common/jwt/jwt_token_test.go

    			t.Fatalf("%s: failed to parse token: %v", tc.name, err)
    		}
    
    		claims := map[string]any{}
    		err = json.Unmarshal(token, &claims)
    		if err != nil {
    			t.Fatalf("%s: failed to parse payload: %v", tc.name, err)
    		}
    
    		for k, v := range tc.wantClaims {
    			got, ok := claims[k]
    			if ok {
    				if !reflect.DeepEqual(got, v) {
    					t.Errorf("%s: claim %q got value %v but want %v", tc.name, k, got, v)
    				}
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    		update                     func(claim *resource.ResourceClaimParameters) *resource.ResourceClaimParameters
    		wantFailures               field.ErrorList
    	}{
    		"valid-no-op-update": {
    			oldResourceClaimParameters: validResourceClaimParameters,
    			update:                     func(claim *resource.ResourceClaimParameters) *resource.ResourceClaimParameters { return claim },
    		},
    		"invalid-name-update": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top