Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for podCIDR (0.11 sec)

  1. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.QOSReserved = *(*map[string]string)(unsafe.Pointer(&in.QOSReserved))
    	out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
    	out.HairpinMode = in.HairpinMode
    	out.MaxPods = in.MaxPods
    	out.PodCIDR = in.PodCIDR
    	if err := v1.Convert_Pointer_int64_To_int64(&in.PodPidsLimit, &out.PodPidsLimit, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				QOSReserved:                      map[string]string{},
    				RuntimeRequestTimeout:            zeroDuration,
    				HairpinMode:                      "",
    				MaxPods:                          0,
    				PodCIDR:                          "",
    				PodPidsLimit:                     utilpointer.Int64(0),
    				ResolverConfig:                   utilpointer.String(""),
    				RunOnce:                          false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    // with the podCIDR supplied by the kubelet.
    func (m *kubeGenericRuntimeManager) UpdatePodCIDR(ctx context.Context, podCIDR string) error {
    	// TODO(#35531): do we really want to write a method on this manager for each
    	// field of the config?
    	klog.InfoS("Updating runtime config through cri with podcidr", "CIDR", podCIDR)
    	return m.runtimeService.UpdateRuntimeConfig(ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      $client = New-Object Net.WebClient
      $client.Headers.Add('Metadata-Flavor', 'Google')
      return ($client.DownloadString($url)).Trim()
    }
    
    # Retrieves the pod CIDR and sets it in $env:POD_CIDR.
    function Set-PodCidr {
      while($true) {
        $pod_cidr = Get_IpAliasRange
        if (-not $?) {
          Log-Output ${pod_cIDR}
          Log-Output "Retrying Get_IpAliasRange..."
          Start-Sleep -sec 1
          continue
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top