Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExternalIPs (0.5 sec)

  1. pilot/pkg/serviceregistry/kube/conversion.go

    	istioService.Attributes.NodeLocal = nodeLocal
    	if len(svc.Spec.ExternalIPs) > 0 {
    		if istioService.Attributes.ClusterExternalAddresses == nil {
    			istioService.Attributes.ClusterExternalAddresses = &model.AddressMap{}
    		}
    		istioService.Attributes.ClusterExternalAddresses.AddAddressesFor(clusterID, svc.Spec.ExternalIPs)
    	}
    
    	return istioService
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. manifests/charts/gateway/values.yaml

          targetPort: 80
        - name: https
          port: 443
          protocol: TCP
          targetPort: 443
        annotations: {}
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
        externalTrafficPolicy: ""
        externalIPs: []
        ipFamilyPolicy: ""
        ipFamilies: []
        ## Whether to automatically allocate NodePorts (only for LoadBalancers).
        # allocateLoadBalancerNodePorts: false
    
      resources:
        requests:
          cpu: 100m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils.go

    		if ip != nil {
    			// Since ip is parsed ok, GetIPFamilyFromIP will never return v1.IPFamilyUnknown
    			ipFamily := GetIPFamilyFromIP(ip)
    			ipFamilyMap[ipFamily] = append(ipFamilyMap[ipFamily], ip)
    		} else {
    			// ExternalIPs may not be validated by the api-server.
    			// Specifically empty strings validation, which yields into a lot
    			// of bad error logs.
    			if len(strings.TrimSpace(ipStr)) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top