Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for clusterIPs (0.17 sec)

  1. pkg/apis/core/helper/helpers_test.go

    			input: core.ServiceSpec{
    				ClusterIPs: nil,
    			},
    
    			output: false,
    		},
    		{
    			name: "headless service",
    			input: core.ServiceSpec{
    				ClusterIP:  "None",
    				ClusterIPs: []string{"None"},
    			},
    			output: false,
    		},
    		// true cases
    		{
    			name: "one ipv4",
    			input: core.ServiceSpec{
    				ClusterIP:  "1.2.3.4",
    				ClusterIPs: []string{"1.2.3.4"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/README.md

        routed away from there, there's nothing to do.)
    
      - We install a `reject` rule for ClusterIPs matching `@cluster-ips` set and a `drop`
        rule for ClusterIPs belonging to any of the ServiceCIDRs in `forward` and `output` hook, with a 
        higher (i.e. less urgent) priority than the DNAT chains making sure all valid
        traffic directed for ClusterIPs is already DNATed. Drop rule will only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/api/service/testing/make.go

    	return func(svc *api.Service) {
    		svc.Spec.ClusterIP = ip
    	}
    }
    
    // SetClusterIPs sets the service ClusterIP and ClusterIPs fields.
    func SetClusterIPs(ips ...string) Tweak {
    	return func(svc *api.Service) {
    		svc.Spec.ClusterIP = ips[0]
    		svc.Spec.ClusterIPs = ips
    	}
    }
    
    // SetIPFamilies sets the service IPFamilies field.
    func SetIPFamilies(families ...api.IPFamily) Tweak {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/instance.go

    	return out
    }
    
    func (c *instance) MustWorkloads() echo.Workloads {
    	out, err := c.Workloads()
    	if err != nil {
    		panic(err)
    	}
    	return out
    }
    
    func (c *instance) Clusters() cluster.Clusters {
    	return cluster.Clusters{c.cluster}
    }
    
    func (c *instance) Instances() echo.Instances {
    	return echo.Instances{c}
    }
    
    func (c *instance) Close() (err error) {
    	return c.workloadMgr.Close()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/api/service/warnings.go

    	}
    
    	if helper.IsServiceIPSet(service) {
    		for i, clusterIP := range service.Spec.ClusterIPs {
    			warnings = append(warnings, getWarningsForIP(field.NewPath("spec").Child("clusterIPs").Index(i), clusterIP)...)
    		}
    	}
    
    	for i, externalIP := range service.Spec.ExternalIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1alpha1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.27
    
    // 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.
    type ServiceCIDR struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      allocateLoadBalancerNodePorts: true
      clusterIP: clusterIPValue
      clusterIPs:
      - clusterIPsValue
      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
      healthCheckNodePort: 12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top