2

使用以下命令时:

$ dcos marathon app add example.json

我收到输出Error: Object is not valid

例子.json

{
"id": "es-cluster",
"env": {
    "MARATHON_URL": "http://127.0.0.1:8080",
    "APP_ID": "es-cluster",
    "ELASTICSEARCH_CLUSTER_NAME": "CLUSTERNAME"
},
"container": {
    "type": "DOCKER",
    "volumes": [
      {
            "containerPath": "data",
            "mode": "RW",
            "persistent": {
                "size": 1000
            }
      }
    ],
    "docker": {
        "image": "some/dockerImage",
        "network": "BRIDGE",
        "portMappings": [{
            "containerPort": 9200
        }, {
            "containerPort": 9300
        }]
    }
},
"cpus": 0.5,
"mem": 1024,
"instances": 2
}

如果我删除音量块(或保持为空),它工作正常。

使用 Marathon 直接使用音量块运行它也很完美。

如何使用 DCOS 创建具有持久卷的应用程序?

4

1 回答 1

4

让它工作。

尝试使用 Marathon api http://marathon-ip:8080/v2/apps 发布example.json并收到以下消息:

{"message":"对象无效","details":[{"path":"/value/upgradeStrategy","errors":["得到 1.0,预期 0.5 或更少","得到 1.0,预期 0.0 "]},{"path":"/value/isResident","errors":["must be false"]}]}

然后我使用 Marathon UI 创建了应用程序(带音量)并复制了 json 以供参考。我注意到马拉松添加了这个块:

  "upgradeStrategy": {
    "minimumHealthCapacity": 0.5,
    "maximumOverCapacity": 0
  }

将此块添加到我原来的example.json(发布在问题中)之后,它起作用了。

于 2016-05-09T08:40:13.087 回答