mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 04:06:03 +00:00
Merge pull request #48870 from aleksandra-malinowska/autoscaling-tests-extra-logs
Automatic merge from submit-queue add more logs for debugging to autoscaling tests Add logging raw Cluster Autoscaler configmap if it can't be parsed.
This commit is contained in:
commit
9099e8e95f
@ -1279,7 +1279,7 @@ func getClusterwideStatus(c clientset.Interface) (string, error) {
|
|||||||
}
|
}
|
||||||
result := matcher.FindStringSubmatch(status)
|
result := matcher.FindStringSubmatch(status)
|
||||||
if len(result) < 2 {
|
if len(result) < 2 {
|
||||||
return "", fmt.Errorf("Failed to parse CA status configmap")
|
return "", fmt.Errorf("Failed to parse CA status configmap, raw status: %v", status)
|
||||||
}
|
}
|
||||||
return result[1], nil
|
return result[1], nil
|
||||||
}
|
}
|
||||||
@ -1307,7 +1307,7 @@ func getScaleUpStatus(c clientset.Interface) (*scaleUpStatus, error) {
|
|||||||
}
|
}
|
||||||
matches := matcher.FindAllStringSubmatch(status, -1)
|
matches := matcher.FindAllStringSubmatch(status, -1)
|
||||||
if len(matches) < 1 {
|
if len(matches) < 1 {
|
||||||
return nil, fmt.Errorf("Failed to parse CA status configmap")
|
return nil, fmt.Errorf("Failed to parse CA status configmap, raw status: %v", status)
|
||||||
}
|
}
|
||||||
result := scaleUpStatus{
|
result := scaleUpStatus{
|
||||||
status: caNoScaleUpStatus,
|
status: caNoScaleUpStatus,
|
||||||
|
Loading…
Reference in New Issue
Block a user