Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for reconciliation (0.18 sec)

  1. pkg/kubelet/kubelet_node_status.go

    			requiresUpdate = true
    		}
    	}
    	return requiresUpdate
    }
    
    // Zeros out extended resource capacity during reconciliation.
    func (kl *Kubelet) reconcileExtendedResource(initialNode, node *v1.Node) bool {
    	requiresUpdate := updateDefaultResources(initialNode, node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// SideEffects states whether this webhook has side effects.
    	// Acceptable values are: Unknown, None, Some, NoneOnDryRun
    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    	"--pv-recycler-minimum-timeout-nfs=200",
    	"--pv-recycler-timeout-increment-hostpath=45",
    	"--pvclaimbinder-sync-period=30s",
    	"--resource-quota-sync-period=10m",
    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			uniqueName := attachedVolume.Name
    			// The nil VolumeSpec is safe only in the case the volume is not in use by any pod.
    			// In such a case it should be detached in the first reconciliation cycle and the
    			// volume spec is not needed to detach a volume. If the volume is used by a pod, it
    			// its spec can be: this would happen during in the populateDesiredStateOfWorld which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    	// First, wait for the reconciliation completed at least once.
    	m.waitUntilRecorded(t)
    
    	assert.Equal(t, tc.expectedReportedReconciliationActionLabel, m.reconciliationActionLabels[0], "the reconciliation action should be recorded in monitor expectedly")
    	assert.Equal(t, tc.expectedReportedReconciliationErrorLabel, m.reconciliationErrorLabels[0], "the reconciliation error should be recorded in monitor expectedly")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// SideEffects states whether this webhook has side effects.
    	// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// to fine tune the behaviour of the cpu manager policies.
    	// Requires  both the "CPUManager" and "CPUManagerPolicyOptions" feature gates to be enabled.
    	CPUManagerPolicyOptions map[string]string
    	// CPU Manager reconciliation period.
    	// Requires the CPUManager feature gate to be enabled.
    	CPUManagerReconcilePeriod metav1.Duration
    	// MemoryManagerPolicy is the name of the policy to use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    	// Allows to delegate reconciliation of a Job object to an external controller.
    	JobManagedBy featuregate.Feature = "JobManagedBy"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3329
    	// alpha: v1.25
    	// beta: v1.26
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// podWorkers is responsible for driving the lifecycle state machine of each pod. The worker is
    	// notified of config changes, updates, periodic reconciliation, container runtime updates, and
    	// evictions of all desired pods and will invoke reconciliation methods per pod in separate
    	// goroutines. The podWorkers are authoritative in the kubelet for what pods are actually being
    	// run and their current state:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.CPUManagerReconcilePeriod.Duration, "cpu-manager-reconcile-period", c.CPUManagerReconcilePeriod.Duration, "<Warning: Alpha feature> CPU Manager reconciliation period. Examples: '10s', or '1m'. If not supplied, defaults to 'NodeStatusUpdateFrequency'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top