Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for noverbs (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    			case "noverbs":
    				if r.Verbs == nil {
    					t.Errorf("[%d] unexpected nil verbs slice. Expected: []string{}", i)
    				}
    				if got, expected := sets.NewString([]string(r.Verbs)...), sets.NewString(); !got.Equal(expected) {
    					t.Errorf("[%d] unexpected verbs for resource %s/%s: got=%v expected=%v", i, resources.GroupVersion, r.Name, got, expected)
    				}
    			}
    		}
    	}
    }
    
    func TestPrepareRun(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - serviceaccounts
        verbs:
        - create
      - apiGroups:
        - ""
        resources:
        - secrets
        verbs:
        - delete
      - apiGroups:
        - ""
        resources:
        - configmaps
        - namespaces
        - secrets
        - serviceaccounts
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - secrets
        - serviceaccounts
        verbs:
        - update
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - persistentvolumeclaims
        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes/status
        verbs:
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. api/discovery/api__v1.json

          "name": "bindings",
          "namespaced": true,
          "singularName": "binding",
          "verbs": [
            "create"
          ]
        },
        {
          "kind": "ComponentStatus",
          "name": "componentstatuses",
          "namespaced": false,
          "shortNames": [
            "cs"
          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"goodverb"},
    			APIGroups:  []string{"goodapig"},
    			Resources:  []string{"goodrscs"},
    			Namespaces: []string{"goodns"}}}}, {
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindGroup,
    			Group: &flowcontrol.GroupSubject{Name: "goodg1"}}},
    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"goodverb"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    
    		if !foundThisVersion {
    			continue
    		}
    		foundVersion = true
    
    		verbs := metav1.Verbs([]string{"delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"})
    		// if we're terminating we don't allow some verbs
    		if apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Terminating) {
    			verbs = metav1.Verbs([]string{"delete", "deletecollection", "get", "list", "watch"})
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

      verbs:
      - get
      - list
      - watch
      - create
      - delete
      - patch
    - apiGroups: ["apps.openshift.io"]
      resources:
      - deploymentconfigs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["project.openshift.io"]
      resources:
      - projects
      verbs:
      - get
    - apiGroups: ["route.openshift.io"]
      resources:
      - routes
      verbs:
      - get
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/validation/validation.go

    	var allErrs field.ErrorList
    
    	if len(rule.Verbs) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("verbs"), "verbs must contain at least one value"))
    	} else if hasWildcard(rule.Verbs) {
    		if len(rule.Verbs) > 1 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("verbs"), rule.Verbs, "if '*' is present, must not specify other verbs"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. pkg/apis/rbac/helpers.go

    // +k8s:deepcopy-gen=false
    type PolicyRuleBuilder struct {
    	PolicyRule PolicyRule
    }
    
    // NewRule returns new PolicyRule made by input verbs.
    func NewRule(verbs ...string) *PolicyRuleBuilder {
    	return &PolicyRuleBuilder{
    		PolicyRule: PolicyRule{Verbs: sets.NewString(verbs...).List()},
    	}
    }
    
    // Groups combines the PolicyRule.APIGroups and input groups.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
Back to top