Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for claims0 (0.13 sec)

  1. cmd/iam-object-store.go

    				iamOS.deleteIAMConfig(ctx, getUserIdentityPath(user, userType))
    				iamOS.deleteIAMConfig(ctx, getMappedPolicyPath(user, userType, false))
    			}
    			return nil
    
    		}
    		u.Credentials.Claims = jwtClaims.Map()
    	}
    
    	if u.Credentials.Description == "" {
    		u.Credentials.Description = u.Credentials.Comment
    	}
    
    	m[user] = u
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    // ValidateHTTPHeaderNameOrJwtClaimRoute validates a header name, allowing special @request.auth.claims syntax
    func ValidateHTTPHeaderNameOrJwtClaimRoute(name string) error {
    	if name == "" {
    		return fmt.Errorf("header name cannot be empty")
    	}
    	if jwt.ToRoutingClaim(name).Match {
    		// Jwt claim form
    		return nil
    	}
    	// Else ensure its a valid header
    	if !validHeaderRegex.MatchString(name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    	// missing/invalid, the resourceName is used.
    	GenerateSecret(resourceName string) (*SecretItem, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

      - `alpha` support (guarded by the `ServiceAccountTokenPodNodeInfo` feature gate) for including the node name (and uid, if the node exists) as additional claims in service account tokens it issues which are bound to pods, and `authentication.kubernetes.io/node-name` and `authentication.kubernetes.io/node-uid` extra user info when the token is used to authenticate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// owner: @munnerz
    	// kep: http://kep.k8s.io/4193
    	// alpha: v1.29
    	// beta: v1.30
    	//
    	// Controls whether the apiserver will validate Node claims in service account tokens.
    	ServiceAccountTokenNodeBindingValidation featuregate.Feature = "ServiceAccountTokenNodeBindingValidation"
    
    	// owner: @munnerz
    	// kep: http://kep.k8s.io/4193
    	// alpha: v1.29
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Dynamic resource allocation: when a claim uses "wait for first consumer" allocation (the default), then it will now get deallocated after it was used by a pod. That ensures that the next pod isn't affected by previous scheduling decision and that resources are not kept allocated unless really needed. If keeping a claim allocated is desired, use "immediate allocation." ([#118936](https://github.com/kubernetes/kubernetes/pull/118936),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - StatefulSet autodelete will respect controlling owners on PVC claims as described in https://github.com/kubernetes/enhancements/pull/4375 ([#122499](https://github.com/kubernetes/kubernetes/pull/122499), [@mattcary](https://github.com/mattcary)) [SIG Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

      ResourceClass, PodScheduling) must be deleted. The changes are internal, so
      YAML files which create pods and resource claims don't need changes except for
      the newer `apiVersion`. ([#116299](https://github.com/kubernetes/kubernetes/pull/116299), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if generatedMeta.GetName() != "prefix-7" {
    		t.Errorf("Expected prefix-7 but got %s", generatedMeta.GetName())
    	}
    
    	// Now that 8 generated names (0..7) are claimed, 8 name generation attempts will not be enough
    	// and create should return an already exists error.
    	seqNameGenerator.seq = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// Kubelet.HandlerSupportsUserNamespaces functions and shouldn't be used anywhere else.
    	updateRuntimeMux sync.Mutex
    
    	// nodeLeaseController claims and renews the node lease for this Kubelet
    	nodeLeaseController lease.Controller
    
    	// pleg observes the state of the container runtime and notifies the kubelet of changes to containers, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top