kabanero-io / kabanero-command-line-services

This repo will be archived soon.
Apache License 2.0
3 stars 7 forks source link

CLI list stacks JSON is missing curated stacks images array #193

Closed alohr51 closed 4 years ago

alohr51 commented 4 years ago

For the curated stacks part of the list stacks JSON the version objects are missing the images array.

For example,

What is used to be

{
    "curated stacks": [
        {
            "name": "java-spring-boot2",
            "versions": [
                {
                    "images": [
                        {
                            "image": "docker.io/kabanero/java-spring-boot2:0.3.24"
                        }
                    ],
                    "reponame": "incubator",
                    "version": "0.3.24"
                }
            ]
        },
...

and what is is now

{
  "curated stacks": [
    {
      "name": "java-spring-boot2",
      "versions": [
        {
          "reponame": "central",
          "version": "0.3.29"
        }
      ]
    },
...

Notice the missing images array.

davco01a commented 4 years ago

merged