Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PodTemplateList (0.21 sec)

  1. pkg/registry/core/podtemplate/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.PodTemplate{} },
    		NewListFunc:               func() runtime.Object { return &api.PodTemplateList{} },
    		DefaultQualifiedResource:  api.Resource("podtemplates"),
    		SingularQualifiedResource: api.Resource("podtemplate"),
    
    		CreateStrategy: podtemplate.Strategy,
    		UpdateStrategy: podtemplate.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/apis/core/register.go

    		return err
    	}
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Pod{},
    		&PodList{},
    		&PodStatusResult{},
    		&PodTemplate{},
    		&PodTemplateList{},
    		&ReplicationControllerList{},
    		&ReplicationController{},
    		&ServiceList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&NodeList{},
    		&Node{},
    		&NodeProxyOptions{},
    		&Endpoints{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/register.go

    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Pod{},
    		&PodList{},
    		&PodStatusResult{},
    		&PodTemplate{},
    		&PodTemplateList{},
    		&ReplicationController{},
    		&ReplicationControllerList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&ServiceList{},
    		&Endpoints{},
    		&EndpointsList{},
    		&Node{},
    		&NodeList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top