Make k8s driver priority lower

Otherwise it ends up being default and it's probably not the normal
case.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2020-02-12 16:26:53 -08:00
parent 08b5a52ccd
commit 87fbc406f5
2 changed files with 4 additions and 2 deletions

View File

@ -14,8 +14,8 @@ import (
"k8s.io/client-go/kubernetes"
)
const prioritySupported = 30
const priorityUnsupported = 70
const prioritySupported = 40
const priorityUnsupported = 80
func init() {
driver.Register(&factory{})

2
go.mod
View File

@ -89,3 +89,5 @@ require (
)
replace github.com/jaguilar/vt100 => github.com/tonistiigi/vt100 v0.0.0-20190402012908-ad4c4a574305
go 1.13