Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for CustomResourceDefinition (0.33 sec)

  1. pkg/kube/kclient/clienttest/crd.go

    	t.Helper()
    	MakeCRDWithAnnotations(t, c, g, nil)
    }
    
    func MakeCRDWithAnnotations(t test.Failer, c kube.Client, g schema.GroupVersionResource, annotations map[string]string) {
    	t.Helper()
    	crd := &v1.CustomResourceDefinition{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        fmt.Sprintf("%s.%s", g.Resource, g.Group),
    			Annotations: annotations,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. samples/security/spire/README.md

      $ kubectl delete ValidatingWebhookConfiguration spire-controller-manager-webhook
      $ kubectl delete csidriver csi.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterspiffeids.spire.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterfederatedtrustdomains.spire.spiffe.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=apiextensions.k8s.io,v1,CustomResourceDefinition
    
    // CustomResourceDefinition represents a resource that should be exposed on the API server.  Its name MUST be in the format
    // <.spec.name>.<.spec.group>.
    // Deprecated in v1.16, planned for removal in v1.22. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.
    type CustomResourceDefinition struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	newCRD := newObj.(*apiextensionsv1.CustomResourceDefinition)
    	// only queue deleted things that haven't been finalized by us
    	if newCRD.DeletionTimestamp.IsZero() || !apiextensionshelpers.CRDHasFinalizer(newCRD, apiextensionsv1.CustomResourceCleanupFinalizer) {
    		return
    	}
    
    	// always requeue resyncs just in case
    	if oldCRD.ResourceVersion == newCRD.ResourceVersion {
    		c.enqueue(newCRD)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    		t.Error("Error: Description not updated")
    	}
    	env.expectPath(s, "/apis/stable.example.com/v1/coolfoos")
    }
    
    var coolFooCRD = &v1.CustomResourceDefinition{
    	TypeMeta: metav1.TypeMeta{
    		APIVersion: "apiextensions.k8s.io/v1",
    		Kind:       "CustomResourceDefinition",
    	},
    	ObjectMeta: metav1.ObjectMeta{
    		Name: "coolfoo.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/peerauthentication-crd.yaml

    apiVersion: apiextensions.k8s.io/v1beta1
    kind: CustomResourceDefinition
    metadata:
      name: peerauthentications.security.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 133 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/apiapproval_test.go

    		t.Fatal(noxuAPIApproved)
    	}
    
    	newSigKubeAPIFn := func(resource, approvalAnnotation string) *apiextensionsv1.CustomResourceDefinition {
    		return &apiextensionsv1.CustomResourceDefinition{
    			ObjectMeta: metav1.ObjectMeta{Name: resource + ".sigs.k8s.io", Annotations: map[string]string{apiextensionsv1.KubeAPIApprovedAnnotation: approvalAnnotation}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    func (in *CustomResourceDefinition) DeepCopyInto(out *CustomResourceDefinition) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CustomResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    }
    
    // CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition
    type CustomResourceDefinitionNames struct {
    	// plural is the plural name of the resource to serve.
    	// The custom resources are served under `/apis/<group>/<version>/.../<plural>`.
    	// Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
    	// Must be all lowercase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. hack/testdata/CRD/example-crd-1-namespaced.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: examples.test.com
    spec:
      group: test.com
      scope: Namespaced
      versions:
        - name: v1
          served: true
          storage: true
          schema:
            openAPIV3Schema:
              type: object
              properties:
                spec:
                  type: object
                  properties:
                    test:
                      type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 26 06:01:46 UTC 2022
    - 491 bytes
    - Viewed (0)
Back to top