Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 194 for proxyv2 (0.11 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    	port         int
    	push         *model.PushContext
    	proxy        *model.Proxy
    	dir          model.TrafficDirection
    
    	mtlsChecker *mtlsChecker
    }
    
    func NewEndpointBuilder(clusterName string, proxy *model.Proxy, push *model.PushContext) EndpointBuilder {
    	dir, subsetName, hostname, port := model.ParseSubsetKey(clusterName)
    
    	svc := push.ServiceForHostname(proxy, hostname)
    	var dr *model.ConsolidatedDestRule
    	if svc != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/context_test.go

    	env := &model.Environment{
    		ServiceDiscovery: serviceDiscovery,
    	}
    
    	proxy := &model.Proxy{}
    	proxy.SetServiceTargets(env)
    
    	assert.Equal(t, len(proxy.ServiceTargets), 3)
    	assert.Equal(t, proxy.ServiceTargets[0].Service.Hostname, "test2.com")
    	assert.Equal(t, proxy.ServiceTargets[1].Service.Hostname, "test3.com")
    	assert.Equal(t, proxy.ServiceTargets[2].Service.Hostname, "test1.com")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    	configCmd := &cobra.Command{
    		Use:   "proxy-config",
    		Short: "Retrieve information about proxy configuration from Envoy [kube only]",
    		Long:  `A group of commands used to retrieve information about proxy configuration from the Envoy config dump`,
    		Example: `  # Retrieve information about proxy configuration from an Envoy instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xdsgen.go

    	cp, _ := controlPlane.Get()
    	return cp
    }
    
    func (s *DiscoveryServer) findGenerator(typeURL string, con *Connection) model.XdsResourceGenerator {
    	if g, f := s.Generators[con.proxy.Metadata.Generator+"/"+typeURL]; f {
    		return g
    	}
    	if g, f := s.Generators[string(con.proxy.Type)+"/"+typeURL]; f {
    		return g
    	}
    
    	if g, f := s.Generators[typeURL]; f {
    		return g
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. cluster/gce/manifests/konnectivity-server.yaml

        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
            {{ drop_capabilities }}
        image: registry.k8s.io/kas-network-proxy/proxy-server:v0.30.3
        resources:
          requests:
            cpu: 25m
        command: [ "/proxy-server"{{ konnectivity_args }} ]
        livenessProbe:
          httpGet:
            scheme: HTTP
            host: 127.0.0.1
            port: {{ health_port }}
            path: /healthz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.mesh.gen.yaml

    Jonh Wendell <******@****.***> 1715709579 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: nil},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/deferred_cluster_creation.proxycfg

    config_path:                      "/etc/istio/proxy"
    binary_path:                      "/usr/local/bin/envoy"
    service_cluster:                  "istio-proxy"
    drain_duration:                   {seconds: 5}
    discovery_address:                "mypilot:15011"
    statsd_udp_address:               "10.1.1.1:9125"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 864 bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              function override_core_limits() {
                while ! pgrep -u istio-proxy envoy; do
                  echo "Envoy isn't running yet, trying again..."
                  pgrep -u istio-proxy envoy
                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/proxy/node.go

    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"reflect"
    	"sync"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    )
    
    // NodePodCIDRHandler handles the life cycle of kube-proxy based on the node PodCIDR assigned
    // Implements the config.NodeHandler interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top