Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IstioStatus (0.13 sec)

  1. pilot/pkg/autoregistration/internal/state/store.go

    	}
    	// The workloadentry has reconnected to the other istiod
    	if !s.cb.IsControllerOf(cfg) {
    		return nil
    	}
    
    	// check if the existing health status is newer than this one
    	wleStatus, ok := cfg.Status.(*v1alpha1.IstioStatus)
    	if ok {
    		healthCondition := status.GetCondition(wleStatus.Conditions, status.ConditionHealthy)
    		if healthCondition != nil {
    			if healthCondition.LastProbeTime.AsTime().After(condition.LastProbeTime.AsTime()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crd/conversion_test.go

    					ResourceVersion:  "1234",
    					Labels:           map[string]string{"label": "value"},
    					Annotations:      map[string]string{"annotation": "value"},
    				},
    				Spec: mock.ExampleVirtualService,
    				Status: &v1alpha1.IstioStatus{
    					Conditions: []*v1alpha1.IstioCondition{
    						{Type: "Health"},
    					},
    				},
    			},
    		},
    		{
    			name: "gateway",
    			cfg: config.Config{
    				Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top