Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for ipAddresses (0.41 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			if !f {
    				log.Warnf("unexpected state, svc %v missing port %v", svc.Hostname, instance.ServicePortName)
    				continue
    			}
    			// consider multiple IP scenarios
    			for _, ip := range proxy.IPAddresses {
    				if ip != instance.Address {
    					continue
    				}
    				// If the endpoint isn't ready, report this
    				if instance.HealthStatus == model.UnHealthy && esc.c.opts.Metrics != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    	test.SetForTest(t, &features.EnableAdditionalIpv4OutboundListenerForIpv6Only, true)
    	cg := NewConfigGenTest(t, TestOptions{Services: testServices})
    	proxy := cg.SetupProxy(&model.Proxy{IPAddresses: []string{"1111:2222::1"}})
    
    	listeners := buildListeners(t, TestOptions{Services: testServices}, proxy)
    	vo := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners)
    	if vo == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("patch", "update").Groups(networkingGroup).Resources("servicecidrs/status").RuleOrDie(),
    				rbacv1helpers.NewRule("get", "list", "watch").Groups(networkingGroup).Resources("ipaddresses").RuleOrDie(),
    				eventsRule(),
    			},
    		})
    	}
    	addControllerRole(&controllerRoles, &controllerRoleBindings, func() rbacv1.ClusterRole {
    		role := rbacv1.ClusterRole{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    // To tackle this, we need a ip2instance map like what we have in service entry.
    func (c *Controller) GetProxyServiceTargets(proxy *model.Proxy) []model.ServiceTarget {
    	if len(proxy.IPAddresses) > 0 {
    		proxyIP := proxy.IPAddresses[0]
    		// look up for a WorkloadEntry; if there are multiple WorkloadEntry(s)
    		// with the same IP, choose one deterministically
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certs.go

    		}
    		if pkiutil.HasServerAuth(cert) {
    			fmt.Printf("[certs] %s serving cert is signed for DNS names %v and IPs %v\n", baseName, cert.DNSNames, cert.IPAddresses)
    		}
    	}
    
    	return nil
    }
    
    type certKeyLocation struct {
    	pkiDir     string
    	caBaseName string
    	baseName   string
    	uxName     string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. pkg/util/iptree/iptree.go

    // is not the network address and also, if IPv4, is not the broadcast address.
    // This is required because the Kubernetes allocators reserve these addresses
    // so IPAddresses can not block deletion of this ranges.
    func prefixContainIP(prefix netip.Prefix, ip netip.Addr) bool {
    	// if the IP is the network address is not contained
    	if prefix.Masked().Addr() == ip {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads.go

    }
    
    func (s *DiscoveryServer) ProxyUpdate(clusterID cluster.ID, ip string) {
    	var connection *Connection
    
    	for _, v := range s.Clients() {
    		if v.proxy.Metadata.ClusterID == clusterID && v.proxy.IPAddresses[0] == ip {
    			connection = v
    			break
    		}
    	}
    
    	// It is possible that the envoy has not connected to this pilot, maybe connected to another pilot
    	if connection == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    		sendHbone:          features.EnableHBONESend || proxy.IsWaypointProxy(),
    		locality:           proxy.Locality,
    		proxyLabels:        proxy.Labels,
    		proxyView:          proxy.GetView(),
    		proxyIPAddresses:   proxy.IPAddresses,
    		configNamespace:    proxy.ConfigNamespace,
    		req:                req,
    		cache:              cache,
    	}
    	if proxy.Metadata != nil {
    		if proxy.Metadata.TLSClientCertChain != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "items": {
                "description": "items is the list of IPAddresses.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.IPAddress"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    			Service:     svc,
    			ServicePort: p,
    			Endpoint: &model.IstioEndpoint{
    				Address:         proxy.IPAddresses[0],
    				ServicePortName: p.Name,
    				EndpointPort:    uint32(targetPort),
    			},
    		})
    	}
    	return ret
    }
    
    func TestInboundClusters(t *testing.T) {
    	proxy := &model.Proxy{
    		IPAddresses: []string{"1.2.3.4"},
    		Metadata:    &model.NodeMetadata{},
    	}
    	service := &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top