Skip to content

Instantly share code, notes, and snippets.

@mb00g
Last active November 22, 2019 08:01
Show Gist options
  • Save mb00g/9c81b354d05d49e62faa to your computer and use it in GitHub Desktop.
Save mb00g/9c81b354d05d49e62faa to your computer and use it in GitHub Desktop.

Membuat VM kosogngan di SmartOS menggunakan file .json

{
  "alias": "custom-kvm-centos6",
  "hostname": "cent-kvm",
  "brand": "kvm",
  "ram": 4096,
  "vcpus": 2,
  "disks": [
    {
      "boot": true,
      "model": "virtio",
      "size": 40960
    }
  ],
  "nics": [
    {
      "nic_tag": "admin",
      "model": "virtio",
      "ip": "dhcp",
      "netmask": "dhcp",
      "gateway": "dhcp",
      "primary": 1
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment