Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for PodTemplateList (0.43 sec)

  1. pkg/printers/internalversion/printers.go

    	row.Cells = append(row.Cells, obj.Name, names, images, labels.FormatLabels(obj.Template.Labels))
    	return []metav1.TableRow{row}, nil
    }
    
    func printPodTemplateList(list *api.PodTemplateList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printPodTemplate(&list.Items[i], options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api__v1_openapi.json

              {
                "group": "",
                "kind": "PodTemplate",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.core.v1.PodTemplateList": {
            "description": "PodTemplateList is a list of PodTemplates.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodTemplateSpec template = 2;
    }
    
    // PodTemplateList is a list of PodTemplates.
    message PodTemplateList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	Template PodTemplateSpec
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodTemplateList is a list of PodTemplates.
    type PodTemplateList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	Items []PodTemplate
    }
    
    // ReplicationControllerSpec is the specification of a replication controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_PodTemplateList = map[string]string{
    	"":         "PodTemplateList is a list of PodTemplates.",
    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    	"items":    "List of pod templates",
    }
    
    func (PodTemplateList) SwaggerDoc() map[string]string {
    	return map_PodTemplateList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodTemplateSpec template = 2;
    }
    
    // PodTemplateList is a list of PodTemplates.
    message PodTemplateList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintPodTemplateList(t *testing.T) {
    
    	templateList := api.PodTemplateList{
    		Items: []api.PodTemplate{
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "pod-template-1"},
    				Template: api.PodTemplateSpec{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:   "pod-template-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.0
    
    // PodTemplateList is a list of PodTemplates.
    type PodTemplateList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            {
              "group": "",
              "kind": "PodTemplate",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.core.v1.PodTemplateList": {
          "description": "PodTemplateList is a list of PodTemplates.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

            {
              "group": "",
              "kind": "PodTemplate",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.core.v1.PodTemplateList": {
          "description": "PodTemplateList is a list of PodTemplates.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top