Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for aggregationRule (0.39 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.yaml

    aggregationRule:
      clusterRoleSelectors:
      - matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
        matchLabels:
          matchLabelsKey: matchLabelsValue
    apiVersion: rbac.authorization.k8s.io/v1alpha1
    kind: ClusterRole
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1.ClusterRole.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/registry/rbac/clusterrole/strategy.go

    	return true
    }
    
    func hasInvalidLabelValueInLabelSelector(role *rbac.ClusterRole) bool {
    	if role.AggregationRule != nil {
    		labelSelectorValidationOptions := metav1validation.LabelSelectorValidationOptions{AllowInvalidLabelValueInSelector: false}
    		for _, selector := range role.AggregationRule.ClusterRoleSelectors {
    			if len(metav1validation.ValidateLabelSelector(&selector, labelSelectorValidationOptions, nil)) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				).RuleOrDie(),
    			},
    		},
    		{
    			// a role for a namespace level admin.  It is `edit` plus the power to grant permissions to other users.
    			ObjectMeta: metav1.ObjectMeta{Name: "admin"},
    			AggregationRule: &rbacv1.AggregationRule{
    				ClusterRoleSelectors: []metav1.LabelSelector{
    					{MatchLabels: map[string]string{"rbac.authorization.k8s.io/aggregate-to-admin": "true"}},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

    apiVersion: v1
    items:
    - aggregationRule:
        clusterRoleSelectors:
        - matchLabels:
            rbac.authorization.k8s.io/aggregate-to-admin: "true"
      apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: admin
      rules: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. pkg/registry/rbac/rest/storage_rbac.go

    		if apierrors.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			return err
    		}
    		if existingRole.AggregationRule != nil {
    			// the old role already moved to an aggregated role, so there are no custom rules to migrate at this point
    			return nil
    		}
    		klog.V(1).Infof("migrating %v to %v", existingRole.Name, newName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

            "properties": {
              "aggregationRule": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.rbac.v1.AggregationRule"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    					},
    					"aggregationRule": {
    						SchemaProps: spec.SchemaProps{
    							Description: "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.",
    							Ref:         ref("k8s.io/api/rbac/v1.AggregationRule"),
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "properties": {
            "aggregationRule": {
              "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
              "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

          "properties": {
            "aggregationRule": {
              "$ref": "#/definitions/io.k8s.api.rbac.v1.AggregationRule",
              "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top