littletiger

Results 11 comments of littletiger

In my opinion, You just need to store regressor's matrix(that is x)

The culprit is the implementation of aws provider: ``` func (ng *AwsNodeGroup) DecreaseTargetSize(delta int) error { if delta >= 0 { return fmt.Errorf("size decrease size must be negative") } size...

related issue: https://github.com/kubernetes/autoscaler/issues/5829

> The culprit is the implementation of aws provider: > > ``` > func (ng *AwsNodeGroup) DecreaseTargetSize(delta int) error { > if delta >= 0 { > return fmt.Errorf("size decrease...

haha, you need to write a custom codes to avoid this situation

Just rewrite another tool ya...

Since the sidecar readiness probe cannot affect the pod ready status, simply remove the sidecar readiness probe and only keep the main container readiness probe.

I have encountered a situation where the startup process of autoscaler (provider is alicloud) takes a very long time. The reason is that MixedTemplateNodeInfoProvider:Process() will build nodeinfo for each nodegroup....

> I have encountered a situation where the startup process of autoscaler (provider is alicloud) takes a very long time. The reason is that MixedTemplateNodeInfoProvider:Process() will build nodeinfo for each...