Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 695 for ipaddresses (0.15 sec)

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

    			return pod
    		}
    	}
    
    	// only need to fetch the corresponding pod through the first IP, although there are multiple IP scenarios,
    	// because multiple ips belong to the same pod
    	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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		Subject: pkix.Name{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    		},
    		ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		DNSNames:    []string{"test-domain.space"},
    		IPAddresses: []net.IP{netutils.ParseIPSloppy("10.100.0.1")},
    	}
    
    	cfg := certToConfig(cert)
    
    	if cfg.CommonName != expectedConfig.CommonName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	template := &x509.CertificateRequest{
    		Subject: pkix.Name{
    			CommonName:   cfg.CommonName,
    			Organization: cfg.Organization,
    		},
    		DNSNames:    cfg.AltNames.DNSNames,
    		IPAddresses: cfg.AltNames.IPs,
    	}
    
    	csrBytes, err := x509.CreateCertificateRequest(cryptorand.Reader, template, key)
    
    	if err != nil {
    		return nil, errors.Wrap(err, "failed to create a CSR")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2beta1.json

                {
                  "resource": "ipaddresses",
                  "responseKind": {
                    "group": "",
                    "kind": "IPAddress",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "shortNames": [
                    "ip"
                  ],
                  "singularResource": "ipaddress",
                  "verbs": [
                    "create",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2.json

                {
                  "resource": "ipaddresses",
                  "responseKind": {
                    "group": "",
                    "kind": "IPAddress",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "shortNames": [
                    "ip"
                  ],
                  "singularResource": "ipaddress",
                  "verbs": [
                    "create",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    	}, serviceImportTimeout)
    }
    
    func (ic *serviceImportCacheImpl) getProxyServiceTargets() []model.ServiceTarget {
    	return ic.GetProxyServiceTargets(&model.Proxy{
    		Type:            model.SidecarProxy,
    		IPAddresses:     []string{serviceImportPodIP},
    		Locality:        &core.Locality{Region: "r", Zone: "z"},
    		ConfigNamespace: serviceImportNamespace,
    		Labels: map[string]string{
    			"app":                      "prod-app",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/renewal/manager.go

    func certToConfig(cert *x509.Certificate) certutil.Config {
    	return certutil.Config{
    		CommonName:   cert.Subject.CommonName,
    		Organization: cert.Subject.Organization,
    		AltNames: certutil.AltNames{
    			IPs:      cert.IPAddresses,
    			DNSNames: cert.DNSNames,
    		},
    		Usages: cert.ExtKeyUsage,
    	}
    }
    
    func loadCertConfigMutators(certBaseName string) []certConfigMutatorFunc {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pilot/test/xds/fake.go

    			return f.BufListener.Dial()
    		}))
    	}
    	adscConn, err := adsc.New(f.Listener.Addr().String(), &adsc.ADSConfig{
    		Config: adsc.Config{
    			IP:        p.IPAddresses[0],
    			NodeType:  p.Type,
    			Meta:      p.Metadata.ToStruct(),
    			Locality:  p.Locality,
    			Namespace: p.ConfigNamespace,
    			GrpcOpts:  opts,
    		},
    		InitialDiscoveryRequests: initialWatch,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    func (s *Controller) GetProxyServiceTargets(node *model.Proxy) []model.ServiceTarget {
    	out := make([]model.ServiceTarget, 0)
    	s.mutex.RLock()
    	defer s.mutex.RUnlock()
    	for _, ip := range node.IPAddresses {
    		instances := s.serviceInstances.getByIP(ip)
    		for _, i := range instances {
    			// Insert all instances for this IP for services within the same namespace. This ensures we
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. 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)
Back to top