Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ValidateClusterLoadAssignment (0.53 sec)

  1. pilot/test/xdstest/validate.go

    			}
    		}
    	}
    }
    
    func ValidateClusterLoadAssignments(t testing.TB, ls []*endpoint.ClusterLoadAssignment) {
    	for _, l := range ls {
    		ValidateClusterLoadAssignment(t, l)
    	}
    }
    
    func ValidateClusterLoadAssignment(t testing.TB, l *endpoint.ClusterLoadAssignment) {
    	if err := l.Validate(); err != nil {
    		t.Errorf("cluster load assignment %v is invalid: %v", l.ClusterName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top