Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewPersistentVolumeRecyclerPodTemplate (0.45 sec)

  1. cmd/kube-controller-manager/app/plugins.go

    		RecyclerTimeoutIncrement: int(config.PersistentVolumeRecyclerConfiguration.IncrementTimeoutHostPath),
    		RecyclerPodTemplate:      volume.NewPersistentVolumeRecyclerPodTemplate(),
    		ProvisioningEnabled:      config.EnableHostPathProvisioning,
    	}
    	if err := AttemptToLoadRecycler(config.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathHostPath, &hostPathConfig); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/volume/plugins_test.go

    		t.Errorf("isPodTemplateValid(%v) returned (%v), want (%v)", pod.String(), got.Error(), want)
    	}
    
    	// Check that the default recycle pod template is valid
    	pod = NewPersistentVolumeRecyclerPodTemplate()
    	want = nil
    	if got := ValidateRecyclerPodTemplate(pod); got != want {
    		t.Errorf("isPodTemplateValid(%v) returned (%v), want (%v)", pod.String(), got.Error(), want)
    	}
    
    	pod = &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    	// a persistent volume after its release. The template is used by plugins
    	// which override specific properties of the pod in accordance with that
    	// plugin. See NewPersistentVolumeRecyclerPodTemplate for the properties
    	// that are expected to be overridden.
    	RecyclerPodTemplate *v1.Pod
    
    	// RecyclerMinimumTimeout is the minimum amount of time in seconds for the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top