Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 508 for clusterIPs (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"allocateLoadBalancerNodePorts": "allocateLoadBalancerNodePorts...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// to SingleStack. Services can be "SingleStack" (a single IP family),
    	// "PreferDualStack" (two IP families on dual-stack configured clusters or
    	// a single IP family on single-stack clusters), or "RequireDualStack"
    	// (two IP families on dual-stack configured clusters, otherwise fail). The
    	// ipFamilies and clusterIPs fields depend on the value of this field. This
    	// field will be wiped when updating a service to type ExternalName.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // to SingleStack. Services can be "SingleStack" (a single IP family),
      // "PreferDualStack" (two IP families on dual-stack configured clusters or
      // a single IP family on single-stack clusters), or "RequireDualStack"
      // (two IP families on dual-stack configured clusters, otherwise fail). The
      // ipFamilies and clusterIPs fields depend on the value of this field. This
      // field will be wiped when updating a service to type ExternalName.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) ForNetworks(networks ...string) Clusters {
    	out := make(Clusters, 0, len(c))
    	for _, cc := range c {
    		for _, network := range networks {
    			if cc.NetworkName() == network {
    				out = append(out, cc)
    				break
    			}
    		}
    	}
    	return out
    }
    
    // Primaries returns the subset that are primary clusters.
    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	svcType := obj.Spec.Type
    	internalIP := "<none>"
    	if len(obj.Spec.ClusterIPs) > 0 {
    		internalIP = obj.Spec.ClusterIPs[0]
    	}
    
    	externalIP := getServiceExternalIP(obj, options.Wide)
    	svcPorts := makePortString(obj.Spec.Ports)
    	if len(svcPorts) == 0 {
    		svcPorts = "<none>"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.Selector, &out.Selector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.IPFamilies != nil {
    		in, out := &in.IPFamilies, &out.IPFamilies
    		*out = make([]IPFamily, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.Selector, &out.Selector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ClusterIPs != nil {
    		in, out := &in.ClusterIPs, &out.ClusterIPs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExternalIPs != nil {
    		in, out := &in.ExternalIPs, &out.ExternalIPs
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.api.networking.v1alpha1.ServiceCIDR": {
            "description": "ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64). This range is used to allocate ClusterIPs to Service objects.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Ports = *(*[]core.ServicePort)(unsafe.Pointer(&in.Ports))
    	out.Selector = *(*map[string]string)(unsafe.Pointer(&in.Selector))
    	out.ClusterIP = in.ClusterIP
    	out.ClusterIPs = *(*[]string)(unsafe.Pointer(&in.ClusterIPs))
    	out.Type = core.ServiceType(in.Type)
    	out.ExternalIPs = *(*[]string)(unsafe.Pointer(&in.ExternalIPs))
    	out.SessionAffinity = core.ServiceAffinity(in.SessionAffinity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	iptablestest "k8s.io/kubernetes/pkg/util/iptables/testing"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    // Conventions for tests using NewFakeProxier:
    //
    // Pod IPs:             10.0.0.0/8
    // Service ClusterIPs:  172.30.0.0/16
    // Node IPs:            192.168.0.0/24
    // Local Node IP:       192.168.0.2
    // Service ExternalIPs: 192.168.99.0/24
    // LoadBalancer IPs:    1.2.3.4, 5.6.7.8, 9.10.11.12
    // Non-cluster IPs:     203.0.113.0/24
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top