Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,819 for Pulling (0.2 sec)

  1. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		tracker.ObservedPodOnWatch(podInitializing, frozenTime)
    
    		// image pulling started at 10s and the last one finished at 30s
    		// first image starts pulling at 10s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 10))
    		tracker.RecordImageStartedPulling(podInitializing.UID)
    		// second image starts pulling at 11s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 11))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. releasenotes/notes/wasm-secret.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 01 19:27:52 UTC 2022
    - 186 bytes
    - Viewed (0)
  3. releasenotes/notes/40093.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 28 14:50:49 UTC 2022
    - 161 bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_manager.go

    	RecordImageFinishedPulling(podUID types.UID)
    }
    
    // imageManager provides the functionalities for image pulling.
    type imageManager struct {
    	recorder     record.EventRecorder
    	imageService kubecontainer.ImageService
    	backOff      *flowcontrol.Backoff
    	// It will check the presence of the image, and report the 'image pulling', image pulled' events correspondingly.
    	puller imagePuller
    
    	podPullingTimeRecorder ImagePodPullingTimeRecorder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. manifests/charts/base/values.yaml

    defaults:
      global:
    
        # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pkg/kubelet/events/event.go

    	FailedToMakePodDataDirectories = "Failed"
    	NetworkNotReady                = "NetworkNotReady"
    )
    
    // Image event reason list
    const (
    	PullingImage            = "Pulling"
    	PulledImage             = "Pulled"
    	FailedToPullImage       = "Failed"
    	FailedToInspectImage    = "InspectFailed"
    	ErrImageNeverPullPolicy = "ErrImageNeverPull"
    	BackOffPullImage        = "BackOff"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/kubelet/images/helpers.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // throttleImagePulling wraps kubecontainer.ImageService to throttle image
    // pulling based on the given QPS and burst limits. If QPS is zero, defaults
    // to no throttling.
    func throttleImagePulling(imageService kubecontainer.ImageService, qps float32, burst int) kubecontainer.ImageService {
    	if qps == 0.0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. samples/ambient-argo/tag-chart/values.yaml

    global:
    
      # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
      # to use for pulling any images in pods that reference this ServiceAccount.
      # Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Used to locate istiod.
      istioNamespace: istio-system
    
      istiod:
        enableAnalysis: false
    
      configValidation: true
      externalIstiod: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/test/echo/server/endpoint/grpcbootstrap.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package endpoint
    
    import "encoding/json"
    
    // Mirror types from grpc to avoid pulling in a bunch of deps
    
    const FileWatcherCertProviderName = "file_watcher"
    
    type FileWatcherCertProviderConfig struct {
    	CertificateFile   string          `json:"certificate_file,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 23:16:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. ci/official/utilities/setup_docker.sh

    # ==============================================================================
    if [[ "$TFCI_DOCKER_PULL_ENABLE" == 1 ]]; then
      # Simple retry logic for docker-pull errors. Sleeps if a pull fails.
      # Pulling an already-pulled container image will finish instantly, so
      # repeating the command costs nothing.
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 15
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 30
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top