Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 219 for apiGroup (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                    namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    // to specify a cluster or namespace-scoped resource.
    message IngressClassParametersReference {
      // apiGroup is the group for the resource being referenced. If APIGroup is
      // not specified, the specified Kind must be in the core API group. For any
      // other third-party types, APIGroup is required.
      // +optional
      optional string aPIGroup = 1;
    
      // kind is the type of resource being referenced.
      optional string kind = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                    namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.yaml

                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                    namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.yaml

                spec:
                  accessModes:
                  - accessModesValue
                  dataSource:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                  dataSourceRef:
                    apiGroup: apiGroupValue
                    kind: kindValue
                    name: nameValue
                    namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/zz_generated.deepcopy.go

    func (in *IngressClassParametersReference) DeepCopyInto(out *IngressClassParametersReference) {
    	*out = *in
    	if in.APIGroup != nil {
    		in, out := &in.APIGroup, &out.APIGroup
    		*out = new(string)
    		**out = **in
    	}
    	if in.Scope != nil {
    		in, out := &in.Scope, &out.Scope
    		*out = new(string)
    		**out = **in
    	}
    	if in.Namespace != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 23:13:31 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    		ans = append(ans, &request.RequestInfo{
    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. pkg/apis/networking/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if params == nil {
    		return allErrs
    	}
    
    	if params.APIGroup != nil {
    		for _, msg := range validation.IsDNS1123Subdomain(*params.APIGroup) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("apiGroup"), *params.APIGroup, msg))
    		}
    	}
    
    	if params.Kind == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("kind"), "kind is required"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			results: []EvaluationResult{
    				{
    					EvalResult: celtypes.True,
    				},
    			},
    			authorizer: newAuthzAllowMatch(authorizer.AttributesRecord{
    				ResourceRequest: true,
    				APIGroup:        "apps",
    				Resource:        "deployments",
    				Subresource:     "status",
    				Namespace:       "test",
    				Name:            "backend",
    				Verb:            "create",
    				APIVersion:      "*",
    			}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. pkg/registry/batch/cronjob/strategy_test.go

    	}
    
    	var (
    		v1beta1Ctx      = genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1beta1", Resource: "cronjobs"})
    		otherVersionCtx = genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v100", Resource: "cronjobs"})
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top