Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for UNHEALTHY (0.26 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				unhealthyNodeNewStatus,
    				unhealthyNodeNewStatus,
    			},
    			expectedInitialStates: map[string]ZoneState{
    				// if a zone has a number of unhealthy nodes less or equal to 2
    				// the controller will consider it normal regardless on
    				// the ration of healthy vs unhealthy nodes
    				testutil.CreateZoneID("region1", "zone1"): stateNormal,
    			},
    			expectedFollowingStates: map[string]ZoneState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    only one of distribute, failover or failoverPriority can be set.' items: properties: from: description: Originating region. type: string to: description: Destination region the traffic will fail over to when endpoints in the 'from' region becomes unhealthy. type: string type: object type: array failoverPriority: description: failoverPriority is an ordered list of labels used to sort endpoints to do priority based load balancing. items: type: string type: array type: object simple: enum: - UNSPECIFIED...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		handler.HandlePodSyncs(podsToSync)
    	case update := <-kl.livenessManager.Updates():
    		if update.Result == proberesults.Failure {
    			handleProbeSync(kl, update, handler, "liveness", "unhealthy")
    		}
    	case update := <-kl.readinessManager.Updates():
    		ready := update.Result == proberesults.Success
    		kl.statusManager.SetContainerReadiness(update.PodUID, update.ContainerID, ready)
    
    		status := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "x-kubernetes-patch-strategy": "replace"
              },
              "unhealthyPodEvictionPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			},
    			expectedLbPolicy:                   cluster.Cluster_CLUSTER_PROVIDED,
    			expectClusterLoadAssignmenttoBeNil: true,
    		},
    		{
    			name:                   "Send Unhealthy Endpoints enabled",
    			discoveryType:          cluster.Cluster_EDS,
    			sendUnhealthyEndpoints: true,
    			expectedLbPolicy:       defaultLBAlgorithm(),
    		},
    		// TODO: add more to cover all cases
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    				adminLogIf(ctx, nerr.Err)
    				errCount++
    			}
    		}
    		if errCount == len(nerrs) {
    			return madmin.BgHealState{}, fmt.Errorf("all remote servers failed to report heal status, cluster is unhealthy")
    		}
    		bgHealStates.Merge(peersHealStates...)
    	}
    
    	return bgHealStates, nil
    }
    
    func (a adminAPIHandlers) BackgroundHealStatusHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	error := ""
    	for _, condition := range obj.Conditions {
    		if condition.Type == api.ComponentHealthy {
    			if condition.Status == api.ConditionTrue {
    				status = "Healthy"
    			} else {
    				status = "Unhealthy"
    			}
    			message = condition.Message
    			error = condition.Error
    			break
    		}
    	}
    	row.Cells = append(row.Cells, obj.Name, status, message, error)
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    						Message: "test message",
    						Error:   "test error",
    					},
    				},
    			},
    			// Columns: Name, Status, Message, Error
    			expected: []metav1.TableRow{{Cells: []interface{}{"cs3", "Unhealthy", "test message", "test error"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printComponentStatus(&test.componentStatus, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatal(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.FCVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top