首页 > 解决方案 > 由于网络原因,使用远程配置的 Coreos 点火失败

问题描述

我正在尝试通过使用在远程文件(在 S3 amazon 中)中分配的自定义点火数据在 VSphere 中启动我的 coreOS ova 映像。不幸的是,我总是遇到同样的错误:

A start job is running formation (disks) ignition[380]: Get https//s3..... ignition.json: dial tcp: i/o timeout

我的点火文件有以下数据:

{
    "networkd": {
      "units": [
       {
         "contents": "Match]\nName=eth0\n\n[Network]\nDNS=8.8.8.8\nAddress=192.168.1.1/24\nGateway=192.168.1.1",
         "name": "eth0.network"
  }
  ]
    },
    "ignition": {
        "version": "2.1.0",
        "config": {
            "replace": {
                "source": "https://s3-us-west-2.amazonaws.com/.../ignition.json"
            }
        }
    }
}

谁能帮帮我??

非常感谢!乔治

标签: networkingvmwarecoreosvspherecoreos-ignition

解决方案


推荐阅读