Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for envoycore (0.32 sec)

  1. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(r.RequestHeadersToAdd).To(Equal([]*envoycore.HeaderValueOption{
    			{
    				Header: &envoycore.HeaderValue{
    					Key:   "x-req-set",
    					Value: "v1",
    				},
    				AppendAction: envoycore.HeaderValueOption_OVERWRITE_IF_EXISTS_OR_ADD,
    			},
    			{
    				Header: &envoycore.HeaderValue{
    					Key:   "x-req-add",
    					Value: "v2",
    				},
    				AppendAction: envoycore.HeaderValueOption_APPEND_IF_EXISTS_OR_ADD,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    package simulation
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"net/http"
    	"regexp"
    	"strings"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	envoycore "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    							},
    							PrivateKey: &envoy_core.DataSource{
    								Specifier: &envoy_core.DataSource_Filename{
    									Filename: "/etc/envoy/external-forward-proxy-key.pem",
    								},
    							},
    						},
    					},
    				},
    			}),
    		},
    	}
    }
    
    func createSocketAddress(addr string, port uint32) *envoy_core.Address {
    	return &envoy_core.Address{
    		Address: &envoy_core.Address_SocketAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/constants/constants.go

    	ServiceCidr               = "istio-service-cidr"
    	ServiceExcludeCidr        = "istio-service-exclude-cidr"
    	OutboundPorts             = "istio-outbound-ports"
    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    	EnvoyPort                 = "envoy-port"
    	InboundCapturePort        = "inbound-capture-port"
    	InboundTunnelPort         = "inbound-tunnel-port"
    	ProxyUID                  = "proxy-uid"
    	ProxyGID                  = "proxy-gid"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server_test.go

    					t.Fatalf("write failed: %v", err)
    				}
    			}))
    			defer app.Close()
    			envoyPort, err := strconv.Atoi(strings.Split(envoy.URL, ":")[2])
    			if err != nil {
    				t.Fatal(err)
    			}
    			server := &Server{
    				prometheus: &PrometheusScrapeConfiguration{
    					Port: strings.Split(app.URL, ":")[2],
    				},
    				envoyStatsPort: envoyPort,
    				http:           &http.Client{},
    				registry:       TestingRegistry(t),
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/cmd/root.go

    func handleErrorWithCode(err error, code int) {
    	log.Error(err)
    	os.Exit(code)
    }
    
    func bindCmdlineFlags(cfg *config.Config, cmd *cobra.Command) {
    	fs := cmd.Flags()
    	flag.Bind(fs, constants.EnvoyPort, "p", "Specify the envoy port to which redirect all TCP traffic.", &cfg.ProxyPort)
    
    	flag.BindEnv(fs, constants.InboundCapturePort, "z",
    		"Port to which all inbound TCP traffic to the pod/VM should be redirected to.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top