Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 165 for PodAffinityTerm (0.25 sec)

  1. pkg/apis/core/validation/validation_test.go

    								Values:   []string{"value1", "value2"},
    							}},
    						},
    					}},
    					PreferredDuringSchedulingIgnoredDuringExecution: []core.WeightedPodAffinityTerm{{
    						Weight: 10,
    						PodAffinityTerm: core.PodAffinityTerm{
    							LabelSelector: &metav1.LabelSelector{
    								MatchExpressions: []metav1.LabelSelectorRequirement{{
    									Key:      "key2",
    									Operator: metav1.LabelSelectorOpNotIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

      resourceVersion: "1391"
      uid: e98f0f22-0937-4495-8211-d5633e50fb8d
    spec:
      affinity:
        podAntiAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
          - podAffinityTerm:
              labelSelector:
                matchExpressions:
                - key: k8s-app
                  operator: In
                  values:
                  - kube-dns
              topologyKey: kubernetes.io/hostname
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  3. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

      resourceVersion: "1391"
      uid: e98f0f22-0937-4495-8211-d5633e50fb8d
    spec:
      affinity:
        podAntiAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
          - podAffinityTerm:
              labelSelector:
                matchExpressions:
                - key: k8s-app
                  operator: In
                  values:
                  - kube-dns
              topologyKey: kubernetes.io/hostname
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

          serviceAccountName: coredns
          affinity:
            podAntiAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - weight: 100
                podAffinityTerm:
                  labelSelector:
                    matchExpressions:
                    - key: k8s-app
                      operator: In
                      values: ["kube-dns"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. 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 (1)
  7. 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)
  8. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodAffinityTerm.
    func (in *PodAffinityTerm) DeepCopy() *PodAffinityTerm {
    	if in == nil {
    		return nil
    	}
    	out := new(PodAffinityTerm)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodAffinityTerm.
    func (in *PodAffinityTerm) DeepCopy() *PodAffinityTerm {
    	if in == nil {
    		return nil
    	}
    	out := new(PodAffinityTerm)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodAffinityTerm": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top