Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 138 for proxyv2 (0.14 sec)

  1. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    	hostname := "valid-hostname"
    	proxy := "user-etcd-proxy"
    	proxyIP := "10.10.10.100"
    	advertiseIP := "1.2.3.4"
    	cfg := &kubeadmapi.InitConfiguration{
    		LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: advertiseIP},
    		ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    			Etcd: kubeadmapi.Etcd{
    				Local: &kubeadmapi.LocalEtcd{
    					PeerCertSANs: []string{
    						proxy,
    						proxyIP,
    						"1.2.3.L",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    // GetProxyConfigNamespace extracts the namespace associated with the proxy
    // from the proxy metadata or the proxy ID
    func GetProxyConfigNamespace(proxy *Proxy) string {
    	if proxy == nil {
    		return ""
    	}
    
    	// First look for ISTIO_META_CONFIG_NAMESPACE
    	// All newer proxies (from Istio 1.1 onwards) are supposed to supply this
    	if len(proxy.Metadata.Namespace) > 0 {
    		return proxy.Metadata.Namespace
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    	proxyIP := proxy.IPAddresses[0]
    	// just in case the proxy ID is bad formatted
    	pods := pc.getPodsByIP(proxyIP)
    	switch len(pods) {
    	case 0:
    		return nil
    	case 1:
    		return pods[0]
    	default:
    		// This should only happen with hostNetwork pods, which cannot be proxy clients...
    		log.Errorf("unexpected: found multiple pods for proxy %v (%v)", proxy.ID, proxyIP)
    		// Try to handle it gracefully
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        - registry.k8s.io/kubernetes-dashboard-amd64:v1.8.3
        sizeBytes: 102319441
      - names:
        - gcr.io/google_containers/kube-proxy:v1.11.10-gke.5
        - registry.k8s.io/kube-proxy:v1.11.10-gke.5
        sizeBytes: 102279340
      - names:
        - registry.k8s.io/event-exporter@sha256:7f9cd7cb04d6959b0aa960727d04fa86759008048c785397b7b0d9dff0007516
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        - "15090,15021,{{ excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}"
      {{- else }}
        - "15090,15021"
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. pkg/proxy/metrics/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/klog/v2"
    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/util/nfacct"
    )
    
    const kubeProxySubsystem = "kubeproxy"
    
    var (
    	// SyncProxyRulesLatency is the latency of one round of kube-proxy syncing proxy
    	// rules. (With the iptables proxy, this includes both full and partial syncs.)
    	SyncProxyRulesLatency = metrics.NewHistogram(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    func NewClusterBuilder(proxy *model.Proxy, req *model.PushRequest, cache model.XdsCache) *ClusterBuilder {
    	cb := &ClusterBuilder{
    		serviceTargets:     proxy.ServiceTargets,
    		proxyID:            proxy.ID,
    		proxyType:          proxy.Type,
    		proxyVersion:       proxy.Metadata.IstioVersion,
    		sidecarScope:       proxy.SidecarScope,
    		passThroughBindIPs: getPassthroughBindIPs(proxy.GetIPMode()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    		}
    	}
    	return false
    }
    
    // parseResources parses a list of resource names to SecretResource types, for a given proxy.
    // Invalid resource names are ignored
    func (s *SecretGen) parseResources(names []string, proxy *model.Proxy) []SecretResource {
    	res := make([]SecretResource, 0, len(names))
    	pkpConf := (*mesh.ProxyConfig)(proxy.Metadata.ProxyConfig).GetPrivateKeyProvider()
    	pkpConfHashStr := ""
    	if pkpConf != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top