Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for migrate (0.58 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		} else if canAttach {
    			return attachableVolumePlugin, nil
    		}
    	}
    	return nil, nil
    }
    
    func getMigratedStatusBySpec(spec *volume.Spec) bool {
    	migrated := false
    	if spec != nil {
    		migrated = spec.Migrated
    	}
    	return migrated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Resource", Type: "string", Description: "Fully qualified resource to migrate"},
    	}
    	_ = h.TableHandler(storageVersionMigrationColumnDefinitions, printStorageVersionMigration)
    	_ = h.TableHandler(storageVersionMigrationColumnDefinitions, printStorageVersionMigrationList)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		cloudprovider.DisableWarningForProvider(cloudProvider)
    		return nil, fmt.Errorf("cloud provider %q was specified, but built-in cloud providers are disabled. Please set --cloud-provider=external and migrate to an external cloud provider", cloudProvider)
    	}
    
    	var nodeHasSynced cache.InformerSynced
    	var nodeLister corelisters.NodeLister
    
    	// If kubeClient == nil, we are running in standalone mode (i.e. no API servers)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    essgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"(sum(irate(container_cpu_usage_seconds_total{namespace!=\"istio-system\",container=\"istio-proxy\"}[1m]))/ (round(sum(irate(istio_requests_total[1m])), 0.001)/1000))/ (sum(irate(istio_requests_total{source_workload=\"istio-ingressgateway\"}[1m])) >bool 10)","format":"time_series","intervalFactor":1,"legendFormat":"istio-proxy","refId":"B"}],"title":"vCPU / 1k rps","type":"timeseries"},{"datasource":{"type"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

          exit 2
        fi
      fi
    
      local gcloud="gcloud"
    
      local accelerator_args=()
      # VMs with Accelerators cannot be live migrated.
      # More details here - https://cloud.google.com/compute/docs/gpus/add-gpus#create-new-gpu-instance
      if [[ -n "${NODE_ACCELERATORS}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    			}
    			for rm, x := range v.XferStats {
    				x2, ok := v2.XferStats[replication.MetricName(rm)]
    				if !ok {
    					x2 = replication.XferStats{}
    				}
    				x2.AvgRate += x.Avg
    				x2.CurrRate += x.Curr
    				if x.Peak > x2.PeakRate {
    					x2.PeakRate = x.Peak
    				}
    				v2.XferStats[replication.MetricName(rm)] = x2
    			}
    			sm.Metrics[dID] = v2
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top