Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for aGroup (0.15 sec)

  1. cluster/gce/gci/configure-helper.sh

      # Known api groups
      local -r known_apis='
          - group: "" # core
          - group: "admissionregistration.k8s.io"
          - group: "apiextensions.k8s.io"
          - group: "apiregistration.k8s.io"
          - group: "apps"
          - group: "authentication.k8s.io"
          - group: "authorization.k8s.io"
          - group: "autoscaling"
          - group: "batch"
          - group: "certificates.k8s.io"
          - group: "extensions"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    0,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"insertNulls":false,"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red","value":80}]},"unit":"short"},"overrides":[]},"gridPos":{"h":8,"w":12,"x":0,"y":8},"id":4,"l...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			continue
    		}
    
    		// If volumes have not been unmounted/detached, do not delete the cgroup
    		// so any memory backed volumes don't have their charges propagated to the
    		// parent croup.  If the volumes still exist, reduce the cpu shares for any
    		// process in the cgroup to the minimum value while we wait.
    		if podVolumesExist := kl.podVolumesExist(uid); podVolumesExist {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      for ((i=1; i<=NUM_MIGS; i++)); do
        local group_name="${NODE_INSTANCE_PREFIX}-group-$i"
        if [[ $i -eq ${NUM_MIGS} ]]; then
          # TODO: We don't add a suffix for the last group to keep backward compatibility when there's only one MIG.
          # We should change it at some point, but note #18545 when changing this.
          group_name="${NODE_INSTANCE_PREFIX}-group"
        fi
        # Spread the remaining number of nodes evenly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		{schema.GroupKind{}, "name", "name"},
    		{schema.GroupKind{Kind: "Kind"}, "", "kind/"}, // should not happen in practice
    		{schema.GroupKind{Kind: "Kind"}, "name", "kind/name"},
    		{schema.GroupKind{Group: "group", Kind: "Kind"}, "name", "kind.group/name"},
    	}
    	for _, tt := range tests {
    		if got := formatResourceName(tt.kind, tt.name, true); got != tt.want {
    			t.Errorf("formatResourceName(%q, %q) = %q, want %q", tt.kind, tt.name, got, tt.want)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			// job manager setup
    			clientSet := clientset.NewForConfigOrDie(&restclient.Config{Host: "", ContentConfig: restclient.ContentConfig{GroupVersion: &schema.GroupVersion{Group: "", Version: "v1"}}})
    
    			var fakeClock clock.WithTicker
    			if tc.controllerTime != nil {
    				fakeClock = clocktesting.NewFakeClock(*tc.controllerTime)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	appsv1beta1 := schema.GroupVersion{Group: "apps", Version: "v1beta1"}
    	appsv1beta2 := schema.GroupVersion{Group: "apps", Version: "v1beta2"}
    	extensionsv1beta1 := schema.GroupVersion{Group: "extensions", Version: "v1beta1"}
    	if requestInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
    		groupVersion := schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// Monitor resource usage
    	resourceAnalyzer serverstats.ResourceAnalyzer
    
    	// Whether or not we should have the QOS cgroup hierarchy for resource management
    	cgroupsPerQOS bool
    
    	// If non-empty, pass this to the container runtime as the root cgroup.
    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    	// hostutil to interact with filesystems
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	for _, r := range targetRefs {
    		v = AppendValidation(v, validatePolicyTargetReference(r))
    	}
    	return
    }
    
    // don't validate version, just group and kind
    var allowedTargetRefs = []config.GroupVersionKind{
    	gvk.Service,
    	gvk.KubernetesGateway,
    }
    
    func validatePolicyTargetReference(targetRef *type_beta.PolicyTargetReference) (v Validation) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    }
    
    // MetricsGroupV2 are a group of metrics that are initialized together.
    type MetricsGroupV2 struct {
    	metricsCache     *cachevalue.Cache[[]MetricV2] `msg:"-"`
    	cacheInterval    time.Duration
    	metricsGroupOpts MetricsGroupOpts
    }
    
    // MetricsGroupOpts are a group of metrics opts to be used to initialize the metrics group.
    type MetricsGroupOpts struct {
    	dependGlobalObjectAPI           bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top