Xiaobin
Xiaobin
> Adding to that list, also `riscv64/alpine` is available. > > As this image is used as a base for many other images, if this would support `linux/riscv64`, it would...
Is there any progress here?
> https://stackoverflow.com/questions/59759438/when-will-a-kube-object-have-more-than-one-ownerreferences 感谢回复。 我也学习了一下自定义CRD的用法。CRD中可以设置replicas,那可能两个CRD设置了不同的replicas,拥有这两种CRD ownerreference的pod是什么样子的?
I think this config can be set as parameters associated with each strategy. The implement can refer to `RemoveDuplicates` where count `ownerKeyOccurence` ```go ownerKey := podOwner{ namespace: pod.ObjectMeta.Namespace, kind: ownerRef.Kind,...
I consider it as a filter `minReplicas`. Users can set this param like `minReplicas:2` means if deployment or job only have less than or equal 2 replications, these pods do...
Refer to `RemoveDuplicates`, we need to calculate owerKey to distinguish different ownerRef pods by unique key `Namespace/Kind/Name/imageHash`. This ownerRef should be defined as global variable and be used at `pkg/descheduler/evictions/evictions.go`...
> This sounds reasonable. This will require to include ReplicaSet/RC/SS informers in the pod evictor to quickly get the number of ready instances. What's the target descheduler version you'd like...
Is there any examples about one pod containing several ownerReferences?
`PodDisruptionBudget ` is better if deployed in user mode. Close this issue.
Without PodDisruptionBudget, descheduler will evict the pod with ReplicaSet=1. ReplicaSet=1 is an example. In some scenes, we must assure there are n% active pods of deployment for serivce. Here, i...