Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,735 for port1 (0.11 sec)

  1. pkg/config/validation/validation_test.go

    			"port", "",
    		},
    		{
    			"duplicate port names",
    			&networking.Gateway{
    				Servers: []*networking.Server{
    					{
    						Hosts: []string{"foo.bar.com"},
    						Port:  &networking.Port{Name: "foo", Number: 80, Protocol: "http"},
    					},
    					{
    						Hosts: []string{"scooby.doo.com"},
    						Port:  &networking.Port{Name: "foo", Number: 8080, Protocol: "http"},
    					},
    				},
    			},
    			"port names", "",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/ports/ports.go

    	TCPForHTTP       = echo.Port{Name: "tcp-for-http", Protocol: protocol.HTTP, ServicePort: 86, WorkloadPort: 18086}
    )
    
    // All the common ports.
    func All() echo.Ports {
    	return echo.Ports{
    		HTTP,
    		GRPC,
    		HTTP2,
    		TCP,
    		HTTPS,
    		TCPServer,
    		AutoTCP,
    		AutoTCPServer,
    		AutoHTTP,
    		AutoGRPC,
    		AutoHTTPS,
    		HTTPInstance,
    		HTTPLocalHost,
    		TCPWorkloadOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/port.go

    		return "", fmt.Errorf("failed creating call for port %s: unsupported protocol %s",
    			p.Name, p.Protocol)
    	}
    }
    
    type Ports []Port
    
    func (ps Ports) Contains(p Port) bool {
    	for _, port := range ps {
    		if reflect.DeepEqual(port, p) {
    			return true
    		}
    	}
    	return false
    }
    
    // ForName returns the first port found with the given name.
    func (ps Ports) ForName(name string) (Port, bool) {
    	for _, port := range ps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. pkg/cluster/ports/ports.go

    limitations under the License.
    */
    
    package ports
    
    import (
    	cpoptions "k8s.io/cloud-provider/options"
    )
    
    // In this file, we can see all default port of cluster.
    // It's also an important documentation for us. So don't remove them easily.
    const (
    	// ProxyStatusPort is the default port for the proxy metrics server.
    	// May be overridden by a flag at startup.
    	ProxyStatusPort = 10249
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

    # If port is unnamed or port name doesn't follow <protocol>[-<suffix>], the analyzer will report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # internal waypoint, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. releasenotes/notes/sidecar-port-merge.yaml

    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  7. doc/initial/7-ports.md

    ## Ports {#ports}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 19 bytes
    - Viewed (0)
  8. src/net/port.go

    		n *= 10
    		nn := n + uint32(d)
    		if nn < n || nn > max {
    			n = max
    			break
    		}
    		n = nn
    	}
    	if !neg && n >= cutoff {
    		port = int(cutoff - 1)
    	} else if neg && n > cutoff {
    		port = int(cutoff)
    	} else {
    		port = int(n)
    	}
    	if neg {
    		port = -port
    	}
    	return port, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    # If port is unnamed or port name doesn't follow <protocol>[-<suffix>], the analyzer will report warning.
    # If the service is in system namespace, i.e., kube-system, istio-system, kube-public, the check will be skipped.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service1
      namespace: kube-system  # Skipped because it's in a kube system namespace
    spec:
      selector:
        app: my-service1
      ports:
        - protocol: TCP
          port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top