Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for ShortNames (0.26 sec)

  1. pkg/apis/apidiscovery/types.go

    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    	// Clients may use this to simplify acting on multiple resource types at once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/mcs-serviceexport-crd.yaml

    metadata:
      name: serviceexports.{{ .Group }}
    spec:
      group: {{ .Group }}
      scope: Namespaced
      names:
        plural: serviceexports
        singular: serviceexport
        kind: ServiceExport
        shortNames:
          - svcex
      versions:
        - name: {{ .Version }}
          served: true
          storage: true
          subresources:
            status: {}
          additionalPrinterColumns:
            - name: Age
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy).
      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/core_test.go

    	return []*metav1.APIResourceList{
    		{
    			GroupVersion: "create/v1",
    			APIResources: []metav1.APIResource{
    				{
    					Name:       "jobs",
    					Verbs:      []string{"create", "list", "watch", "delete"},
    					ShortNames: []string{"jz"},
    					Categories: []string{"all"},
    				},
    			},
    		},
    	}
    }
    
    func TestController_DiscoveryError(t *testing.T) {
    	controllerDescriptorMap := map[string]*ControllerDescriptor{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:01 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy).
      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

    spec:
      conversion:
        strategy: None
      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: Istio control plane revision
          jsonPath: .spec.revision
          name: Revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

    spec:
      conversion:
        strategy: None
      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: Istio control plane revision
          jsonPath: .spec.revision
          name: Revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/lds_test.go

    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "foo:1234"),
    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "foo"),
    				fmt.Sprintf(grpcxds.ServerListenerNameTemplate, "[::]:8076"),
    			},
    		},
    		"expand shortnames": {
    			in: []string{
    				"bar",
    				"bar.ns",
    				"bar.ns.svc",
    				"bar.ns.svc.cluster.local",
    				"foo:80",
    				"foo.ns:81",
    				"foo.ns.svc:82",
    				"foo.ns.svc.cluster.local:83",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

      name: volumesnapshotclasses.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshotClass
        listKind: VolumeSnapshotClassList
        plural: volumesnapshotclasses
        shortNames:
          - vsclass
          - vsclasses
        singular: volumesnapshotclass
      scope: Cluster
      versions:
        - additionalPrinterColumns:
            - jsonPath: .driver
              name: Driver
              type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

    kind: CustomResourceDefinition
    metadata:
      name: istiooperators.install.istio.io
    spec:
      group: install.istio.io
      names:
        kind: IstioOperator
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
      scope: Namespaced
      subresources:
        status: {}
      validation:
        openAPIV3Schema:
          properties:
            apiVersion:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top