Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for maxCodes (0.17 sec)

  1. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.MaxPods, "max-pods", c.MaxPods, "Number of Pods that can run on this Kubelet.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    	setters = append(setters,
    		nodestatus.NodeAddress(kl.nodeIPs, kl.nodeIPValidator, kl.hostname, kl.hostnameOverridden, kl.externalCloudProvider, kl.cloud, nodeAddressesFunc),
    		nodestatus.MachineInfo(string(kl.nodeName), kl.maxPods, kl.podsPerCore, kl.GetCachedMachineInfo, kl.containerManager.GetCapacity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		mounter:                        kubeDeps.Mounter,
    		hostutil:                       kubeDeps.HostUtil,
    		subpather:                      kubeDeps.Subpather,
    		maxPods:                        int(kubeCfg.MaxPods),
    		podsPerCore:                    int(kubeCfg.PodsPerCore),
    		syncLoopMonitor:                atomic.Value{},
    		daemonEndpoints:                daemonEndpoints,
    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. pkg/printers/internalversion/printers.go

    	if obj.Spec.MinReplicas != nil {
    		minPods = fmt.Sprintf("%d", *obj.Spec.MinReplicas)
    	}
    	maxPods := obj.Spec.MaxReplicas
    	currentReplicas := obj.Status.CurrentReplicas
    	row.Cells = append(row.Cells, obj.Name, reference, metrics, minPods, int64(maxPods), int64(currentReplicas), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * ✏️  Clarify docs on CORS. PR [#5627](https://github.com/tiangolo/fastapi/pull/5627) by [@paxcodes](https://github.com/paxcodes).
    * 📝 Update Help FastAPI: Help Maintain FastAPI. PR [#5632](https://github.com/tiangolo/fastapi/pull/5632) by [@tiangolo](https://github.com/tiangolo).
    
    ### Translations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"maxPods": {
    						SchemaProps: spec.SchemaProps{
    							Description: "maxPods is the maximum number of Pods that can run on this Kubelet. The value must be a non-negative integer. Default: 110",
    							Type:        []string{"integer"},
    							Format:      "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top