Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for UNHEALTHY (0.2 sec)

  1. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    	"unhealthyPodEvictionPolicy": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"unhealthyPodEvictionPolicy": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. cluster/gce/gci/health-monitor.sh

      local output=""
      while true; do
        if ! output=$(curl -m "${max_seconds}" -f -s -S http://127.0.0.1:10248/healthz 2>&1); then
          # Print the response and/or errors.
          echo "${output}"
          echo "Kubelet is unhealthy!"
          systemctl kill kubelet
          # Wait for a while, as we don't want to kill it again before it is really up.
          sleep 60
        else
          sleep "${SLEEP_SECONDS}"
        fi
      done
    }
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/volume_stats.go

    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsHealthStatusAbnormalKey),
    		"Abnormal volume health status. The count is either 1 or 0. 1 indicates the volume is unhealthy, 0 indicates volume is healthy",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "")
    )
    
    type volumeStatsCollector struct {
    	metrics.BaseStableCollector
    
    	statsProvider serverstats.Provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. pkg/probe/exec/exec_test.go

    		// Ok - truncated output
    		{probe.Success, false, true, elevenKilobyte, tenKilobyte, nil},
    		// Run returns error
    		{probe.Unknown, true, true, "", "", fmt.Errorf("test error")},
    		// Unhealthy
    		{probe.Failure, false, true, "Fail", "", &fakeExitError{true, 1}},
    		// Timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/probe/grpc/grpc.go

    		}
    
    		return probe.Failure, fmt.Sprintf("error: health rpc probe failed: %+v", err), nil
    	}
    
    	if resp.GetStatus() != grpchealth.HealthCheckResponse_SERVING {
    		return probe.Failure, fmt.Sprintf("service unhealthy (responded with %q)", resp.GetStatus().String()), nil
    	}
    
    	return probe.Success, fmt.Sprintf("service healthy"), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 19:28:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	kubeletFailTempl = template.Must(template.New("init").Parse(dedent.Dedent(`
    	Unfortunately, an error has occurred:
    		{{ .Error }}
    
    	This error is likely caused by:
    		- The kubelet is not running
    		- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled)
    
    	If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands:
    		- 'systemctl status kubelet'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/evented_test.go

    	require.NoError(t, err)
    	assert.Equal(t, true, isHealthy)
    
    	// send remaining 95 events and make channel out of capacity
    	for _, event := range events[5:] {
    		pleg.eventChannel <- event
    	}
    	// pleg is unhealthy when channel is out of capacity
    	isHealthy, err = pleg.Healthy()
    	require.Error(t, err)
    	assert.Equal(t, false, isHealthy)
    }
    
    func TestUpdateRunningPodMetric(t *testing.T) {
    	metrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top