Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for statusConds (0.14 sec)

  1. tests/integration/pilot/analysis/analysis_test.go

    		return err
    	}
    
    	statusConds := x.Status.Conditions
    
    	// todo for some reason when a WorkloadEntry is created a "Reconciled" Condition isn't added.
    	for i, cond := range x.Status.Conditions {
    		// remove reconciled conditions for when WorkloadEntry starts initializing
    		// with a reconciled status.
    		if cond.Type == "Reconciled" {
    			statusConds = append(statusConds[:i], statusConds[i+1:]...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top