Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IDRange (0.52 sec)

  1. pkg/kube/inject/openshift.go

    	groups, err := getSupplementalGroupsAnnotation(ns)
    	if err != nil {
    		return nil, err
    	}
    	log.Debugf("got preallocated value for groups: %s in namespace %s", groups, ns.Name)
    
    	blocks, err := parseSupplementalGroupAnnotation(groups)
    	if err != nil {
    		return nil, err
    	}
    
    	idRanges := []securityv1.IDRange{}
    	for _, block := range blocks {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      optional int32 min = 1;
    
      // max is the end of the range, inclusive.
      optional int32 max = 2;
    }
    
    // IDRange provides a min/max of an allowed range of IDs.
    message IDRange {
      // min is the start of the range, inclusive.
      optional int64 min = 1;
    
      // max is the end of the range, inclusive.
      optional int64 max = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            "disruptionsAllowed",
            "currentHealthy",
            "desiredHealthy",
            "expectedPods"
          ],
          "type": "object"
        },
        "io.k8s.api.policy.v1beta1.IDRange": {
          "description": "IDRange provides a min/max of an allowed range of IDs.",
          "properties": {
            "max": {
              "description": "max is the end of the range, inclusive.",
              "format": "int64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top