Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for proxyIps (0.31 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	peerAuthn         *authn_beta.PeerAuthentication
    	externalService   bool
    
    	meta         *model.NodeMetadata
    	istioVersion *model.IstioVersion
    	proxyIps     []string
    }
    
    func (c clusterTest) fillDefaults() clusterTest {
    	if c.proxyIps == nil {
    		c.proxyIps = []string{"6.6.6.6", "::1"}
    	}
    	if c.istioVersion == nil {
    		c.istioVersion = model.MaxIstioVersion
    	}
    	if c.meta == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/proxy/kubemark/hollow_proxy.go

    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/events"
    	proxyapp "k8s.io/kubernetes/cmd/kube-proxy/app"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	proxyconfig "k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/utils/ptr"
    )
    
    type HollowProxy struct {
    	ProxyServer *proxyapp.ProxyServer
    }
    
    type FakeProxier struct {
    	proxyconfig.NoopNodeHandler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    	cases := []struct {
    		proxyNs   string
    		wantHosts []string
    	}{
    		{
    			proxyNs:   "test1",
    			wantHosts: []string{"svc1", "svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "test2",
    			wantHosts: []string{"svc2", "svc3", "svc4", "svc4", "svc4"},
    		},
    		{
    			proxyNs:   "ns1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. cmd/admin-handlers-pools.go

    	host := env.Get("_MINIO_DECOM_ENDPOINT_HOST", defaultEndPoint.Host)
    	if host == "" {
    		return
    	}
    	for nodeIdx, proxyEp := range globalProxyEndpoints {
    		if proxyEp.Endpoint.Host == host && !proxyEp.IsLocal {
    			if proxyRequestByNodeIndex(ctx, w, r, nodeIdx) {
    				return true
    			}
    		}
    	}
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

    {{- define "resources"  }}
      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/util/network/ip.go

    func AllIPv6(ipAddrs []string) bool {
    	for i := 0; i < len(ipAddrs); i++ {
    		addr, err := netip.ParseAddr(ipAddrs[i])
    		if err != nil {
    			// Should not happen, invalid IP in proxy's IPAddresses slice should have been caught earlier,
    			// skip it to prevent a panic.
    			continue
    		}
    		if addr.Is4() {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    	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)
  8. cmd/endpoint.go

    func GetProxyEndpointLocalIndex(proxyEps []ProxyEndpoint) int {
    	for i, pep := range proxyEps {
    		if pep.IsLocal {
    			return i
    		}
    	}
    	return -1
    }
    
    // GetProxyEndpoints - get all endpoints that can be used to proxy list request.
    func GetProxyEndpoints(endpointServerPools EndpointServerPools) []ProxyEndpoint {
    	var proxyEps []ProxyEndpoint
    
    	proxyEpSet := set.NewStringSet()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/files/injection-template.yaml

    {{- define "resources"  }}
      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

    {{- define "resources"  }}
      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top