Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for portMap (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-registration-page.png

    plugin-portal-registration-page.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It depends on how they have been published and, specifically, whether they have been published with the necessary <<plugins#sec:plugin_markers,plugin marker artifacts>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    		} else {
    			proxier.logger.Error(err, "Failed to execute iptables-save: stale chains will not be deleted")
    		}
    	}
    
    	// Finally, tail-call to the nodePorts chain.  This needs to be after all
    	// other service portal rules.
    	if proxier.nodePortAddresses.MatchAll() {
    		destinations := []string{"-m", "addrtype", "--dst-type", "LOCAL"}
    		// Block localhost nodePorts if they are not supported. (For IPv6 they never
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	"k8s.io/kubernetes/pkg/util/async"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    )
    
    const (
    	// kubeServicesChain is the services portal chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// kubeProxyFirewallChain is the kube-proxy firewall chain.
    	kubeProxyFirewallChain utiliptables.Chain = "KUBE-PROXY-FIREWALL"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

         */
        public BuildScriptBuilder conventionPluginSupport(@Nullable String comment) {
            Syntax syntax = syntaxFor(dsl);
            block.repositories.gradlePluginPortal("Use the plugin portal to apply community plugins in convention plugins.");
            syntax.configureConventionPlugin(comment, block.plugins, block.repositories);
            return this;
        }
    
        /**
         * Adds a plugin to be applied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top