1
0
mirror of https://github.com/rancher/os.git synced 2025-08-30 03:56:17 +00:00

Merge pull request #1272 from SvenDowideit/add-latest-and-running

Add latest and running
This commit is contained in:
Josh Curl 2016-10-19 17:37:51 -07:00 committed by GitHub
commit 404e21f937

View File

@ -79,6 +79,7 @@ func osSubcommands() []cli.Command {
} }
} }
// TODO: this and the getLatestImage should probably move to utils/network and be suitably cached.
func getImages() (*Images, error) { func getImages() (*Images, error) {
upgradeUrl, err := getUpgradeUrl() upgradeUrl, err := getUpgradeUrl()
if err != nil { if err != nil {
@ -128,13 +129,30 @@ func osMetaDataGet(c *cli.Context) error {
log.Fatal(err) log.Fatal(err)
} }
for _, image := range images.Available { cfg := config.LoadConfig()
runningName := cfg.Rancher.Upgrade.Image + ":" + config.VERSION
foundRunning := false
for i := len(images.Available) - 1; i >= 0; i-- {
image := images.Available[i]
_, _, err := client.ImageInspectWithRaw(context.Background(), image, false) _, _, err := client.ImageInspectWithRaw(context.Background(), image, false)
local := "local"
if dockerClient.IsErrImageNotFound(err) { if dockerClient.IsErrImageNotFound(err) {
fmt.Println(image, "remote") local = "remote"
} else {
fmt.Println(image, "local")
} }
available := "available"
if image == images.Current {
available = "latest"
}
var running string
if image == runningName {
foundRunning = true
running = "running"
}
fmt.Println(image, local, available, running)
}
if !foundRunning {
fmt.Println(config.VERSION, "running")
} }
return nil return nil