Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for notReady (0.17 sec)

  1. operator/pkg/helmreconciler/wait.go

    func namespacesReady(namespaces []corev1.Namespace) (bool, []string) {
    	var notReady []string
    	for _, namespace := range namespaces {
    		if namespace.Status.Phase != corev1.NamespaceActive {
    			notReady = append(notReady, "Namespace/"+namespace.Name)
    		}
    	}
    	return len(notReady) == 0, notReady
    }
    
    func podsReady(pods []corev1.Pod) (bool, []string) {
    	var notReady []string
    	for _, pod := range pods {
    		if !isPodReady(&pod) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. pkg/api/v1/endpoints/util_test.go

    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "beef::1:2:3:4"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    			name: "one set, one notReady ip, one port",
    			given: []v1.EndpointSubset{{
    				NotReadyAddresses: []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				Ports:             []v1.EndpointPort{{Port: 111}},
    			}},
    			expect: []v1.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            new File(temporaryFolder, "jdks/jdk-mac-2/" + DefaultJdkCacheDirectory.MARKER_FILE).createNewFile()
    
            new File(temporaryFolder, "jdks/notReady").tap { mkdirs() }
    
            when:
            def homes = jdkCacheDirectory.listJavaHomes()
    
            then:
            homes == ([install1, install2] as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. cni/pkg/install/install.go

    	default:
    		// Valid configuration; set isReady to true and wait for modifications before checking again
    		setReady(in.isReady)
    		cniInstalls.With(resultLabel.Value(resultSuccess)).Increment()
    		// Pod set to "NotReady" before termination
    		return watcher.Wait(ctx)
    	}
    }
    
    // checkValidCNIConfig returns an error if an invalid CNI configuration is detected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		containers           []containerTemplate // templates of containers
    		remain               []int               // template indexes of remaining sandboxes
    		evictTerminatingPods bool
    	}{
    		{
    			description: "notready sandboxes without containers for deleted pods should be garbage collected.",
    			sandboxes: []sandboxTemplate{
    				makeGCSandbox(pods[2], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, false, false, 0),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters.go

    			node.Status.Capacity = v1.ResourceList{}
    		}
    
    		var devicePluginAllocatable v1.ResourceList
    		var devicePluginCapacity v1.ResourceList
    		var removedDevicePlugins []string
    
    		// TODO: Post NotReady if we cannot get MachineInfo from cAdvisor. This needs to start
    		// cAdvisor locally, e.g. for test-cmd.sh, and in integration test.
    		info, err := machineInfoFunc()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    	totalNotReady := 0
    	for _, subset := range endpoints.Subsets {
    		totalReady += len(subset.Addresses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. pkg/volume/plugins.go

    type KubeletVolumeHost interface {
    	// SetKubeletError lets plugins set an error on the Kubelet runtime status
    	// that will cause the Kubelet to post NotReady status with the error message provided
    	SetKubeletError(err error)
    
    	// GetInformerFactory returns the informer factory for CSIDriverLister
    	GetInformerFactory() informers.SharedInformerFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    server in a given timeframe for whatever reasons (networking issue, machine
    failure, etc.). Normally when kube-up script will encounter even one NotReady
    node it will fail, even though the cluster most likely will be working. We
    added an environmental variable to kube-up ALLOWED\_NOTREADY\_NODES that
    defines the number of nodes that if not Ready in time won’t cause kube-up
    failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_386.go

    	SYS_GETTHRID       = 299 // { pid_t sys_getthrid(void); }
    	SYS___THRWAKEUP    = 301 // { int sys___thrwakeup(const volatile void *ident, \
    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, \
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
Back to top