Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for svcSubnet (0.45 sec)

  1. prow/config/topology/multicluster-large.json

        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "controlPlaneClusterName": "primary"
      },
      {
        "clusterName": "primary-2",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
        "network": "network-1"
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 21:11:06 UTC 2021
    - 787 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants_test.go

    func TestGetAPIServerVirtualIP(t *testing.T) {
    	var tests = []struct {
    		name, svcSubnet, expectedIP string
    		expectedErr                 bool
    	}{
    		{
    			name:        "subnet mask 24",
    			svcSubnet:   "10.96.0.12/24",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    		{
    			name:        "subnet mask 12",
    			svcSubnet:   "10.96.0.0/12",
    			expectedIP:  "10.96.0.1",
    			expectedErr: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. prow/config/topology/multicluster.json

    [
      {
        "kind": "Kubernetes",
        "clusterName": "primary",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "primary",
        "meta": {
          "fakeVM": false
        }
      },
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 19:44:55 UTC 2021
    - 576 bytes
    - Viewed (0)
  4. prow/config/topology/external-istiod-multicluster.json

    [
      {
        "kind": "Kubernetes",
        "clusterName": "config",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
        "configClusterName": "config"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "remote",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
        "network": "network-2",
        "primaryClusterName": "external",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 15:28:47 UTC 2021
    - 787 bytes
    - Viewed (0)
  5. prow/config/topology/external-istiod.json

      {
        "kind": "Kubernetes",
        "clusterName": "config",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
        "configClusterName": "config"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "external",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 15:28:47 UTC 2021
    - 512 bytes
    - Viewed (0)
  6. prow/config/topology/single.json

    [
      {
        "kind": "Kubernetes",
        "clusterName": "istio-testing",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "istio-testing"
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 21:11:06 UTC 2021
    - 172 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    		return false, nil, nil
    	}
    
    	_, svcSubnet, err := netutils.ParseCIDRSloppy(idr.serviceSubnet)
    	if err != nil {
    		return true, nil, errors.Wrapf(err, "error parsing CIDR %q", idr.serviceSubnet)
    	}
    
    	internalAPIServerVirtualIP, err := netutils.GetIndexedIP(svcSubnet, 1)
    	if err != nil {
    		return true, nil, errors.Wrapf(err, "unable to get first IP address from the given CIDR (%s)", svcSubnet.String())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			}
    		})
    	}
    }
    
    func TestGetDNSIP(t *testing.T) {
    	var tests = []struct {
    		name, svcSubnet, expectedDNSIP string
    		isDualStack                    bool
    	}{
    		{
    			name:          "subnet mask 12",
    			svcSubnet:     "10.96.0.0/12",
    			expectedDNSIP: "10.96.0.10",
    		},
    		{
    			name:          "subnet mask 26",
    			svcSubnet:     "10.87.116.64/26",
    			expectedDNSIP: "10.87.116.74",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	svcSubnet, err := GetKubernetesServiceCIDR(svcSubnetList)
    	if err != nil {
    		return nil, errors.Wrap(err, "unable to get internal Kubernetes Service IP from the given service CIDR")
    	}
    	internalAPIServerVirtualIP, err := netutils.GetIndexedIP(svcSubnet, 1)
    	if err != nil {
    		return nil, errors.Wrapf(err, "unable to get the first IP address from the given CIDR: %s", svcSubnet.String())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

    # talk to each other directly.
    #
    # [{ "cluster_name": "cluster1","pod_subnet": "10.10.0.0/16","svc_subnet": "10.255.10.0/24","network_id": "0" },
    #  { "cluster_name": "cluster2","pod_subnet": "10.20.0.0/16","svc_subnet": "10.255.20.0/24","network_id": "0" },
    #  { "cluster_name": "cluster3","pod_subnet": "10.30.0.0/16","svc_subnet": "10.255.30.0/24","network_id": "1" }]
    function load_cluster_topology() {
      CLUSTER_TOPOLOGY_CONFIG_FILE="${1}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top