Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,419 for subresource1 (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// - `pods/log` matches the log subresource of pods.
    	// - `*` matches all resources and their subresources.
    	// - `pods/*` matches all subresources of pods.
    	// - `*/scale` matches all scale subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// An empty list implies all resources and subresources in this API groups apply.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

              optionalOldSelf: true
              reason: reasonValue
              rule: ruleValue
        selectableFields:
        - jsonPath: jsonPathValue
        served: true
        storage: true
        subresources:
          scale:
            labelSelectorPath: labelSelectorPathValue
            specReplicasPath: specReplicasPathValue
            statusReplicasPath: statusReplicasPathValue
          status: {}
    status:
      acceptedNames:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/registry/certificates/certificates/storage/storage.go

    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, nil, err
    	}
    
    	// Subresources use the same store and creation strategy, which only
    	// allows empty subs. Updates to an existing subresource are handled by
    	// dedicated strategies.
    	statusStore := *store
    	statusStore.UpdateStrategy = csrregistry.StatusStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // - `pods/log` matches the log subresource of pods.
      // - `*` matches all resources and their subresources.
      // - `pods/*` matches all subresources of pods.
      // - `*/scale` matches all scale subresources.
      //
      // If wildcard is present, the validation rule will ensure resources do not
      // overlap with each other.
      //
      // An empty list implies all resources and subresources in this API groups apply.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. plugin/pkg/admission/imagepolicy/admission.go

    func (a *Plugin) Validate(ctx context.Context, attributes admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	// Ignore all calls to subresources other than ephemeralcontainers or calls to resources other than pods.
    	subresource := attributes.GetSubresource()
    	if (subresource != "" && subresource != ephemeralcontainers) || attributes.GetResource().GroupResource() != api.Resource("pods") {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// - `pods/log` matches the log subresource of pods.
    	// - `*` matches all resources and their subresources.
    	// - `pods/*` matches all subresources of pods.
    	// - `*/scale` matches all scale subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// An empty list implies all resources and subresources in this API groups apply.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if hasStatusEnabled(crd.Subresources) {
    		return true
    	}
    	for _, v := range crd.Versions {
    		if hasStatusEnabled(v.Subresources) {
    			return true
    		}
    	}
    	return false
    }
    
    // hasStatusEnabled returns true if given CRD Subresources has non-nil Status set.
    func hasStatusEnabled(subresources *apiextensions.CustomResourceSubresources) bool {
    	if subresources != nil && subresources.Status != nil {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // +optional
      optional CustomResourceValidation schema = 4;
    
      // subresources specify what subresources this version of the defined custom resource have.
      // +optional
      optional CustomResourceSubresources subresources = 5;
    
      // additionalPrinterColumns specifies additional columns returned in Table output.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    func (c *examples) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error) {
    	result = &v1.Example{}
    	err = c.client.Patch(pt).
    		Namespace(c.ns).
    		Resource("examples").
    		Name(name).
    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top