Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for protMap (0.17 sec)

  1. pkg/scheduler/framework/types.go

    	}
    	if len(n.UsedPorts) > 0 {
    		// HostPortInfo is a map-in-map struct
    		// make sure it's deep copied
    		for ip, portMap := range n.UsedPorts {
    			clone.UsedPorts[ip] = make(map[ProtocolPort]struct{})
    			for protocolPort, v := range portMap {
    				clone.UsedPorts[ip][protocolPort] = v
    			}
    		}
    	}
    	if len(n.PodsWithAffinity) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

        rm -rf "${cni_plugin_tarball}" &&
        sudo find /opt/cni/bin -type f -not \( \
            -iname host-local \
            -o -iname bridge \
            -o -iname portmap \
            -o -iname loopback \
            \) \
            -delete
    
      # containerd 1.4.12 installed by docker in kubekins supports CNI version 0.4.0
      echo "Configuring cni"
      sudo mkdir -p "$CNI_CONFIG_DIR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	if features.EnableExternalNameAlias {
    		resolveServiceAliases(allServices, configsUpdate)
    	}
    
    	for _, s := range allServices {
    		portMap := map[string]int{}
    		ports := sets.New[int]()
    		for _, port := range s.Ports {
    			portMap[port.Name] = port.Port
    			ports.Insert(port.Port)
    		}
    
    		svcKey := s.Key()
    		if _, ok := ps.ServiceIndex.instancesByPort[svcKey]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 8081, // should be ignored since it doesn't define PortMap
    		},
    	}
    
    	wiRatings2 := &model.WorkloadInstance{
    		Name:      "ratings-2",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:  labels.Instance{"app": "ratings"},
    			Address: "2.2.2.2",
    		},
    		PortMap: map[string]uint32{
    			"http": 8082, // should be used
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// by default, use the numbered targetPort
    	istioEndpoint.EndpointPort = uint32(targetPort.num)
    
    	if targetPort.name != "" {
    		// This is a named port, find the corresponding port in the port map
    		matchedPort := wi.PortMap[targetPort.name]
    		if matchedPort != 0 {
    			istioEndpoint.EndpointPort = matchedPort
    		} else if targetPort.explicitName {
    			// No match found, and we expect the name explicitly in the service, skip this endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    		if pc.alt == nil {
    			if err != errCallerOwnsConn {
    				pc.conn.Close()
    			}
    			close(pc.closech)
    		}
    	}
    	pc.mutateHeaderFunc = nil
    }
    
    var portMap = map[string]string{
    	"http":    "80",
    	"https":   "443",
    	"socks5":  "1080",
    	"socks5h": "1080",
    }
    
    func idnaASCIIFromURL(url *url.URL) string {
    	addr := url.Hostname()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

            "type": "host-local",
            "subnet": "{{.PodCIDR}}",
            "routes": [
              {
                "dst": "0.0.0.0/0"
              }
            ]
          }
        },
        {
          "type": "portmap",
          "capabilities": {
            "portMappings": true
          }
        }
      ]
    }
    EOF
      if [[ "${KUBERNETES_MASTER:-}" != "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Kubenet: added HostPort IPv6 support.  HostPortManager: operates only with one IP family, failing if receives port mapping entries with different IP families.  HostPortSyncer: operates only with one IP family, skipping portmap entries with different IP families ([#80854](https://github.com/kubernetes/kubernetes/pull/80854), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  9. prow/config/calico.yaml

              },
              "policy": {
                  "type": "k8s"
              },
              "kubernetes": {
                  "kubeconfig": "__KUBECONFIG_FILEPATH__"
              }
            },
            {
              "type": "portmap",
              "snat": true,
              "capabilities": {"portMappings": true}
            },
            {
              "type": "bandwidth",
              "capabilities": {"bandwidth": true}
            }
          ]
        }
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top