Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for defaultEndpoint (0.52 sec)

  1. releasenotes/notes/47412.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47412
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:28 UTC 2023
    - 267 bytes
    - Viewed (0)
  2. tests/testdata/config/none.yaml

            number: 7071
            protocol: HTTP
            name: httplocal
          defaultEndpoint: 127.0.0.1:17071
        - port:
            number: 7070
            protocol: TCP
            name: tcplocal
          defaultEndpoint: 127.0.0.1:17070
        # Fortio ports
        - port:
            number: 18080
            protocol: HTTP
            name: http-echo
          defaultEndpoint: 127.0.0.1:28080
        - port:
            number: 18079
            protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/deprecation.yaml

          delay:
            percent: 50
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: no-selector
      namespace: default
    spec:
      ingress:
      - port:
          number: 9080
        defaultEndpoint: unix:///var/run/some.sock
      egress:
      - hosts:
        - "./*"
      outboundTrafficPolicy:
        mode: ALLOW_ANY
        egressProxy:
          host: example
          port:
            number: 9080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    				{
    					DefaultEndpoint: "127.0.0.1:110",
    				},
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, false, false},
    		{"ingress without port and with IPv6 endpoint", &networking.Sidecar{
    			Ingress: []*networking.IstioIngressListener{
    				{
    					DefaultEndpoint: "[::1]:110",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. releasenotes/notes/inbound-passthrough.yaml

                labels:
                  app: ratings
                  ingress:
                    - port:
                      number: 9080
                      protocol: HTTP
                      name: http
                      defaultEndpoint: 127.0.0.1:9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. tests/testdata/networking/sidecar-without-service/configs.yaml

    metadata:
      name: consumerapp
      namespace: consumerns
    spec:
      egress:
        - hosts:
            - "ns1/*"
      ingress:
        - port:
            number: 9080
            protocol: HTTP
            name: http-admin
          defaultEndpoint: 127.0.0.1:8080
          captureMode: IPTABLES
      workloadSelector:
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
      - defaultEndpoint: 127.0.0.1:8080
        port:
          name: tls
          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    			name:            "ipv4 host: defaultEndpoint set to [::1]:7073",
    			proxy:           ipv4Proxy,
    			defaultEndpoint: "[::1]:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		// ipv6 use cases
    		{
    			name:            "ipv6 host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           ipv6Proxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "::1",
    			expectedPort:    7073,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		} else if len(ingressListener.DefaultEndpoint) > 0 {
    			// parse the ip, port. Validation guarantees presence of :
    			hostIP, hostPort, hostErr := net.SplitHostPort(ingressListener.DefaultEndpoint)
    			if hostPort == "" || hostErr != nil {
    				continue
    			}
    			var err error
    			if port, err = strconv.Atoi(hostPort); err != nil {
    				continue
    			}
    			if hostIP == model.PodIPAddressPrefix {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top