To be able to use the latest openshift client-go, we need kubenetes client-go to be at 0.18.3. openshift client-go is needed to create openshift-specific objects.
What
Did a go get k8s.io/client-go@v0.18.3, this automatically updated my deps in go.mod
Fixed up the function to list pods based on API changes in the new version of the API being pulled.
Why
To be able to use the latest openshift client-go, we need kubenetes client-go to be at 0.18.3. openshift client-go is needed to create openshift-specific objects.
What
go get k8s.io/client-go@v0.18.3
, this automatically updated my deps in go.modTesting
go build -o=bin/kodo main.go
should succeed