mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
use gopkg.in/yaml.v2 in podex
Most of the repo uses gopkg.in/yaml.v2 but podex was using gopkg.in/v2/yaml. This means it wasn't buildable with what was in Godeps. Use the same version as the rest of the repo to solve the Godeps problem.
This commit is contained in:
parent
edea91e519
commit
a70fd60640
@ -40,7 +40,7 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
goyaml "gopkg.in/v2/yaml"
|
||||
goyaml "gopkg.in/yaml.v2"
|
||||
)
|
||||
|
||||
const usage = "podex [-format=yaml|json] [-type=pod|container] [-id NAME] IMAGES..."
|
||||
|
Loading…
Reference in New Issue
Block a user