Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PodTemplateSpec (0.37 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*core.PodTemplateSpec)(nil), (*v1.PodTemplateSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_PodTemplateSpec_To_v1_PodTemplateSpec(a.(*core.PodTemplateSpec), b.(*v1.PodTemplateSpec), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Status represents the current information about a pod. This data may not be up
    	// to date.
    	// +optional
    	Status PodStatus
    }
    
    // PodTemplateSpec describes the data a pod should have when created from a template
    type PodTemplateSpec struct {
    	// Metadata of the pods created from this template.
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec defines the behavior of a pod.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // List of pod templates
      repeated PodTemplate items = 2;
    }
    
    // PodTemplateSpec describes the data a pod should have when created from a template
    message PodTemplateSpec {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +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)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md
    	Items []Pod `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // PodTemplateSpec describes the data a pod should have when created from a template
    type PodTemplateSpec struct {
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"items":    "List of pod templates",
    }
    
    func (PodTemplateList) SwaggerDoc() map[string]string {
    	return map_PodTemplateList
    }
    
    var map_PodTemplateSpec = map[string]string{
    	"":         "PodTemplateSpec describes the data a pod should have when created from a template",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "required": [
              "containers"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PodTemplateSpec": {
            "description": "PodTemplateSpec describes the data a pod should have when created from a template",
            "properties": {
              "metadata": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	}
    	return allErrs
    }
    
    // Validates the given template and ensures that it is in accordance with the desired selector and replicas.
    func ValidatePodTemplateSpecForRC(template *core.PodTemplateSpec, selectorMap map[string]string, replicas int32, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if template == nil {
    		allErrs = append(allErrs, field.Required(fldPath, ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top