Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReadinessGates (0.29 sec)

  1. pkg/printers/internalversion/printers.go

    		if nodeName == "" {
    			nodeName = "<none>"
    		}
    		if nominatedNodeName == "" {
    			nominatedNodeName = "<none>"
    		}
    
    		readinessGates := "<none>"
    		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 {
    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/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.DNSConfig != nil {
    		in, out := &in.DNSConfig, &out.DNSConfig
    		*out = new(PodDNSConfig)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessGates != nil {
    		in, out := &in.ReadinessGates, &out.ReadinessGates
    		*out = make([]PodReadinessGate, len(*in))
    		copy(*out, *in)
    	}
    	if in.RuntimeClassName != nil {
    		in, out := &in.RuntimeClassName, &out.RuntimeClassName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.DNSConfig != nil {
    		in, out := &in.DNSConfig, &out.DNSConfig
    		*out = new(PodDNSConfig)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ReadinessGates != nil {
    		in, out := &in.ReadinessGates, &out.ReadinessGates
    		*out = make([]PodReadinessGate, len(*in))
    		copy(*out, *in)
    	}
    	if in.RuntimeClassName != nil {
    		in, out := &in.RuntimeClassName, &out.RuntimeClassName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: api.PodSpec{
    					Containers: make([]api.Container, 2),
    					NodeName:   "test1",
    					ReadinessGates: []api.PodReadinessGate{
    						{
    							ConditionType: api.PodConditionType(condition1),
    						},
    						{
    							ConditionType: api.PodConditionType(condition2),
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "readinessGates": {
    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