Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 411 for ipaddresses (0.43 sec)

  1. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/util.go

    			usages = append(usages, "serving")
    			continue
    		}
    
    		usages = append(usages, fmt.Sprintf("%d", curr))
    	}
    
    	validServingNames := []string{}
    	for _, ip := range certificate.IPAddresses {
    		validServingNames = append(validServingNames, ip.String())
    	}
    	validServingNames = append(validServingNames, certificate.DNSNames...)
    	servingString := ""
    	if len(validServingNames) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/crypto/tls/generate_cert.go

    		BasicConstraintsValid: true,
    	}
    
    	hosts := strings.Split(*host, ",")
    	for _, h := range hosts {
    		if ip := net.ParseIP(h); ip != nil {
    			template.IPAddresses = append(template.IPAddresses, ip)
    		} else {
    			template.DNSNames = append(template.DNSNames, h)
    		}
    	}
    
    	if *isCA {
    		template.IsCA = true
    		template.KeyUsage |= x509.KeyUsageCertSign
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_address.go

    package core
    
    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    )
    
    const (
    	// WildcardAddress binds to all IP addresses
    	WildcardAddress = "0.0.0.0"
    
    	// WildcardIPv6Address binds to all IPv6 addresses
    	WildcardIPv6Address = "::"
    
    	// LocalhostAddress for local binding
    	LocalhostAddress = "127.0.0.1"
    
    	// LocalhostIPv6Address for local binding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K 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. pkg/registry/networking/ipaddress/strategy.go

    	_, _ = newIPAddress, oldIPAddress
    }
    
    // Validate validates a new IPAddress.
    func (ipAddressStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	ipAddress := obj.(*networking.IPAddress)
    	err := validation.ValidateIPAddress(ipAddress)
    	return err
    }
    
    // Canonicalize normalizes the object after validation.
    func (ipAddressStrategy) Canonicalize(obj runtime.Object) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/mock/discovery_mock.go

    	HelloInstanceV0 = MakeIP(HelloService, 0)
    
    	// HelloProxyV0 is a mock proxy v0 of HelloService
    	HelloProxyV0 = model.Proxy{
    		Type:         model.SidecarProxy,
    		IPAddresses:  []string{HelloInstanceV0},
    		ID:           "v0.default",
    		DNSDomain:    "default.svc.cluster.local",
    		IstioVersion: model.MaxIstioVersion,
    		Metadata:     &model.NodeMetadata{},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/workloadinstances/util.go

    // GetInstanceForProxy returns a workload instance that
    // corresponds to a given proxy, if any.
    func GetInstanceForProxy(index Index, proxy *model.Proxy, proxyIP string) *model.WorkloadInstance {
    	if !slices.Contains(proxy.IPAddresses, proxyIP) {
    		return nil
    	}
    	instances := index.GetByIP(proxyIP) // list is ordered by namespace/name
    	if len(instances) == 0 {
    		return nil
    	}
    	if len(instances) == 1 { // dominant use case
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top