Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for podCIDR (0.09 sec)

  1. 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)
  2. 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