Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for IPV4 (0.16 sec)

  1. prow/config/calico.yaml

                    - Disabled
                    type: string
                  wireguardEnabled:
                    description: 'WireguardEnabled controls whether Wireguard is enabled
                      for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).
                      [Default: false]'
                    type: boolean
                  wireguardEnabledV6:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    		families: []api.IPFamily{api.IPv4Protocol},
    		svc: svctest.MakeService("foo",
    			svctest.SetIPFamilies(api.IPv4Protocol),
    			svctest.SetClusterIPs("2000::1")),
    		expect: []string{"expected an IPv4 value as indicated"},
    	}, {
    		name:     "too_many_IPs_singlestack",
    		families: []api.IPFamily{api.IPv4Protocol},
    		svc: svctest.MakeService("foo",
    			svctest.SetClusterIPs("10.0.0.1", "10.0.0.2")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - File content check for IPV4 is now enabled by default, and the check of IPV4 or IPV6 is done for `kubeadm init` or `kubeadm join` only in case the user intends to create a cluster to support that kind of IP address family ([#115420](https://github.com/kubernetes/kubernetes/pull/115420), [@chendave](...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - `kubelet` allows pods to use the `net.ipv4.tcp_fin_timeout`, “net.ipv4.tcp_keepalive_intvl”
      and “net.ipv4.tcp_keepalive_probes“ sysctl by default; Pod Security Admission
      allows this sysctl in `v1.29+` versions of the baseline and restricted policies. ([#121240](https://github.com/kubernetes/kubernetes/pull/121240), [@HirazawaUi](https://github.com/HirazawaUi))
    - `kubelet` now allows pods to use the `net.ipv4.tcp_keepalive_time` sysctl by default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Valid list items are "IPv4", "IPv6".
    	// More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    	IpFamilies []string `protobuf:"bytes,29,rep,name=ipFamilies,proto3" json:"ipFamilies,omitempty"`
    	// Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
    	// are PreferDualStack, RequireDualStack, and SingleStack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    		// an anti-martian-packet rule
    		expectFirewall bool
    	}{
    		{
    			name: "ipv4, localhost-nodeports enabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: true,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    			expectFirewall: true,
    		},
    		{
    			name: "ipv4, localhost-nodeports disabled",
    
    			family:             v1.IPv4Protocol,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
      // field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for
      // each of IPv4 and IPv6.
      // +optional
      // +patchStrategy=merge
      repeated string podCIDRs = 7;
    
      // ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +optional
    	Ports []PortStatus
    }
    
    // IPFamily represents the IP Family (IPv4 or IPv6). This type is used
    // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).
    type IPFamily string
    
    const (
    	// IPv4Protocol indicates that this IP is IPv4 protocol
    	IPv4Protocol IPFamily = "IPv4"
    	// IPv6Protocol indicates that this IP is IPv6 protocol
    	IPv6Protocol IPFamily = "IPv6"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // IPFamily represents the IP Family (IPv4 or IPv6). This type is used
    // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies).
    // +enum
    type IPFamily string
    
    const (
    	// IPv4Protocol indicates that this IP is IPv4 protocol
    	IPv4Protocol IPFamily = "IPv4"
    	// IPv6Protocol indicates that this IP is IPv6 protocol
    	IPv6Protocol IPFamily = "IPv6"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"podCIDRs":      "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.",
    	"providerID":    "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top