Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for whenUnsatisfiable (0.37 sec)

  1. pkg/test/framework/components/echo/kube/templates/deployment.yaml

            proxy.istio.io/config: '{"holdApplicationUntilProxyStarts": true}'
    {{- end }}
        spec:
    {{- if $.Ambient }}
          topologySpreadConstraints:
          - topologyKey: "kubernetes.io/hostname"
            whenUnsatisfiable: "ScheduleAnyway"
            maxSkew: 1
            labelSelector:
              matchLabels:
                app: {{ $.Service }}
    {{- end }}
    {{- if $.ServiceAccount }}
          serviceAccountName: {{ $.Service }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    	var result []topologySpreadConstraint
    	for _, c := range constraints {
    		if c.WhenUnsatisfiable == action {
    			selector, err := metav1.LabelSelectorAsSelector(c.LabelSelector)
    			if err != nil {
    				return nil, err
    			}
    
    			if pl.enableMatchLabelKeysInPodTopologySpread && len(c.MatchLabelKeys) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top