Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for zone2 (0.23 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

    zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/time/format.go

    				b = append(b, name...)
    				break
    			}
    			// No time zone known for this time, but we must print one.
    			// Use the -0700 format.
    			zone := offset / 60 // convert to minutes
    			if zone < 0 {
    				b = append(b, '-')
    				zone = -zone
    			} else {
    				b = append(b, '+')
    			}
    			b = appendInt(b, zone/60, 2)
    			b = appendInt(b, zone%60, 2)
    		case stdFracSecond0, stdFracSecond9:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    						Locality: model.Locality{
    							ClusterID: "cluster-1",
    							Label:     "region1/zone1/subzone1",
    						},
    						LbWeight: 30,
    						Network:  "filtered-out",
    					},
    				},
    			},
    			expected: []*endpoint.LocalityLbEndpoints{
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        local zones
        read -r -a zones <<< "${E2E_ZONES}"
        # tear them down in reverse order, finally tearing down the master too.
        for ((zone_num=${#zones[@]}-1; zone_num>0; zone_num--)); do
          KUBE_GCE_ZONE="${zones[zone_num]}" KUBE_USE_EXISTING_MASTER="true" "${KUBE_ROOT}/cluster/kube-down.sh"
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    					Distribute: []*networking.LocalityLoadBalancerSetting_Distribute{
    						{
    							From: "region1/zone1/subzone1",
    							To: map[string]uint32{
    								"region1/zone1/subzone1": 80,
    								"region1/zone1/subzone2": 15,
    								"region1/zone1/subzone3": 5,
    							},
    						},
    					},
    				},
    			},
    			discoveryType:                  cluster.Cluster_EDS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    		f.Run("-p", "udp", "--sport", "15053", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "2")
    	}
    	for _, gid := range split(proxyGID) {
    		// Packets with dst port 53 from istio to zone 1. These are Istio calls to upstream resolvers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ip-range.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

    #
    # Assumed vars:
    #   PROJECT
    #   ZONE
    function get-node-os() {
      gcloud compute ssh "$1" \
        --project "${PROJECT}" \
        --zone "${ZONE}" \
        --command \
        "cat /etc/os-release | grep \"^ID=.*\" | cut -c 4-"
    }
    
    # Assumed vars:
    #   KUBE_VERSION
    #   NODE_SCOPES
    #   NODE_INSTANCE_PREFIX
    #   PROJECT
    #   ZONE
    #
    # Vars set:
    #   KUBE_PROXY_TOKEN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top