Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for conditionType (0.12 sec)

  1. pkg/printers/internalversion/printers.go

    		if len(pod.Spec.ReadinessGates) > 0 {
    			trueConditions := 0
    			for _, readinessGate := range pod.Spec.ReadinessGates {
    				conditionType := readinessGate.ConditionType
    				for _, condition := range pod.Status.Conditions {
    					if condition.Type == conditionType {
    						if condition.Status == api.ConditionTrue {
    							trueConditions++
    						}
    						break
    					}
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					NodeName:   "test1",
    					ReadinessGates: []api.PodReadinessGate{
    						{
    							ConditionType: api.PodConditionType(condition1),
    						},
    						{
    							ConditionType: api.PodConditionType(condition2),
    						},
    						{
    							ConditionType: api.PodConditionType(condition3),
    						},
    					},
    				},
    				Status: api.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "conditionType": {
              "description": "ConditionType refers to a condition in the pod's condition list with matching type.",
              "type": "string"
            }
          },
          "required": [
            "conditionType"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.PodSecurityContext": {
    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