Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for ipAddresses (1.33 sec)

  1. pilot/pkg/util/network/ip.go

    				continue
    			}
    			if unwrapAddr.IsUnspecified() {
    				ok = false
    				continue
    			}
    			ipAddresses = append(ipAddresses, unwrapAddr.String())
    		}
    	}
    	return ipAddresses, ok
    }
    
    // ResolveAddr resolves an authority address to an IP address. Incoming
    // addr can be an IP address or hostname. If addr is an IPv6 address, the IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. api/discovery/apis__networking.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "networking.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "IPAddress",
          "name": "ipaddresses",
          "namespaced": false,
          "shortNames": [
            "ip"
          ],
          "singularName": "ipaddress",
          "storageVersionHash": "3APLM23DOxw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    			ClusterID: c.Cluster(),
    		},
    		tlsMode:  model.GetTLSModeFromEndpointLabels(proxy.Labels),
    		nodeName: proxy.GetNodeName(),
    	}
    	var networkID network.ID
    	if len(proxy.IPAddresses) > 0 {
    		networkID = out.endpointNetwork(proxy.IPAddresses[0])
    	}
    	out.labels = labelutil.AugmentLabels(proxy.Labels, c.Cluster(), locality, out.nodeName, networkID)
    	return out
    }
    
    func (b *EndpointBuilder) buildIstioEndpoint(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/certs/util.go

    // AssertCertificateHasIPAddresses is a utility function for kubeadm testing that asserts if a given certificate has
    // the expected IPAddresses
    func AssertCertificateHasIPAddresses(t *testing.T, cert *x509.Certificate, IPAddresses ...net.IP) {
    	for _, IPAddress := range IPAddresses {
    		found := false
    		for _, val := range cert.IPAddresses {
    			if val.Equal(IPAddress) {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/networking.go

    	go servicecidrs.NewController(
    		ctx,
    		controllerContext.InformerFactory.Networking().V1alpha1().ServiceCIDRs(),
    		controllerContext.InformerFactory.Networking().V1alpha1().IPAddresses(),
    		controllerContext.ClientBuilder.ClientOrDie("service-cidrs-controller"),
    	).Run(ctx, 5)
    	// TODO use component config
    	return nil, true, nil
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/agent.go

    			PurgeInterval:         wasmPurgeInterval,
    			HTTPRequestTimeout:    wasmHTTPRequestTimeout,
    			HTTPRequestMaxRetries: wasmHTTPRequestMaxRetries,
    		},
    		ProxyIPAddresses:            proxy.IPAddresses,
    		ServiceNode:                 proxy.ServiceNode(),
    		EnvoyStatusPort:             envoyStatusPortEnv,
    		EnvoyPrometheusPort:         envoyPrometheusPortEnv,
    		MinimumDrainDuration:        minimumDrainDurationEnv,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/vm_test.go

    				Labels: map[string]string{
    					"merge": "wg",
    					"wg":    "1",
    				},
    			},
    		},
    		Status: nil,
    	})
    	proxy := &model.Proxy{
    		Labels:      map[string]string{"merge": "me"},
    		IPAddresses: []string{"1.1.1.1"},
    		Metadata: &model.NodeMetadata{
    			AutoRegisterGroup: "wg",
    			Namespace:         "namespace",
    			Network:           "network1",
    			Labels:            map[string]string{"merge": "meta", "meta": "2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_address.go

    	}
    )
    
    // TODO: getActualWildcardAndLocalHost would be removed once the dual stack support in Istio
    // getActualWildcardAndLocalHost will return corresponding Wildcard and LocalHost
    // depending on value of proxy's IPAddresses.
    func getActualWildcardAndLocalHost(node *model.Proxy) (string, string) {
    	if node.SupportsIPv4() {
    		return WildcardAddress, LocalhostAddress
    	}
    	return WildcardIPv6Address, LocalhostIPv6Address
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/connections.go

    	IP        string
    	GroupName string
    	Namespace string
    }
    
    func makeProxyKey(proxy *model.Proxy) proxyKey {
    	return proxyKey{
    		Network:   string(proxy.Metadata.Network),
    		IP:        proxy.IPAddresses[0],
    		GroupName: proxy.Metadata.AutoRegisterGroup,
    		Namespace: proxy.Metadata.Namespace,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. tests/fuzz/autoregistration_controller_fuzzer.go

    	stopped  bool
    }
    
    func makeConn(proxy *model.Proxy, connTime time.Time) *fakeConn {
    	return &fakeConn{proxy: proxy, connTime: connTime}
    }
    
    func (f *fakeConn) ID() string {
    	return fmt.Sprintf("%s-%v", f.proxy.IPAddresses[0], f.connTime)
    }
    
    func (f *fakeConn) Proxy() *model.Proxy {
    	return f.proxy
    }
    
    func (f *fakeConn) ConnectedAt() time.Time {
    	return f.connTime
    }
    
    func (f *fakeConn) Stop() {
    	f.stopped = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top