Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for PodAffinityTerm (0.41 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PodAffinityTerm)(nil), (*core.PodAffinityTerm)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PodAffinityTerm_To_core_PodAffinityTerm(a.(*v1.PodAffinityTerm), b.(*core.PodAffinityTerm), 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/validation/validation.go

    	if len(podAffinityTerm.TopologyKey) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("topologyKey"), "can not be empty"))
    	}
    	return append(allErrs, unversionedvalidation.ValidateLabelName(podAffinityTerm.TopologyKey, fldPath.Child("topologyKey"))...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32
    	// Required. A pod affinity term, associated with the corresponding weight.
    	PodAffinityTerm PodAffinityTerm
    }
    
    // PodAffinityTerm defines a set of pods (namely those matching the labelSelector
    // relative to the given namespace(s)) that this pod should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32 `json:"weight" protobuf:"varint,1,opt,name=weight"`
    	// Required. A pod affinity term, associated with the corresponding weight.
    	PodAffinityTerm PodAffinityTerm `json:"podAffinityTerm" protobuf:"bytes,2,opt,name=podAffinityTerm"`
    }
    
    // Defines a set of pods (namely those matching the labelSelector
    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. common-protos/k8s.io/api/core/v1/generated.proto

    message WeightedPodAffinityTerm {
      // weight associated with matching the corresponding podAffinityTerm,
      // in the range 1-100.
      optional int32 weight = 1;
    
      // Required. A pod affinity term, associated with the corresponding weight.
      optional PodAffinityTerm podAffinityTerm = 2;
    }
    
    // WindowsSecurityContextOptions contain Windows-specific options and credentials.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message WeightedPodAffinityTerm {
      // weight associated with matching the corresponding podAffinityTerm,
      // in the range 1-100.
      optional int32 weight = 1;
    
      // Required. A pod affinity term, associated with the corresponding weight.
      optional PodAffinityTerm podAffinityTerm = 2;
    }
    
    // WindowsSecurityContextOptions contain Windows-specific options and credentials.
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
    	"weight":          "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
    	"podAffinityTerm": "Required. A pod affinity term, associated with the corresponding weight.",
    }
    
    func (WeightedPodAffinityTerm) SwaggerDoc() map[string]string {
    	return map_WeightedPodAffinityTerm
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm"
                    }
                  ],
                  "default": {}
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    ### API Change
    
    - 1. PodAffinityTerm includes a namespaceSelector field to allow selecting eligible namespaces based on their labels. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.6.md

      * Caveat: The alpha version no longer supports, and the beta version does not support, the "empty `podAffinityTerm.namespaces` list means all namespaces" behavior. In both alpha and beta it now means "same namespace as the pod specifying this affinity rule."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
Back to top