LXC の新しいプロファイルを作成しようとしています。
これは私がしました;
root@nagri:/home/nagri# curl -s -k --cert ~/.config/lxc/client.crt --key ~/.config/lxc/client.key -X POST -d '{
"name": "testing",
"description": "Some description string",
"config": {
"limits.memory": "2GB"
},
"devices": {
"kvm": {
"type": "unix-char",
"path": "/dev/kvm"
}
}
}' https://localhost:8443/1.0/profiles/testing | jq .
{
"type": "sync",
"status": "Success",
"status_code": 200,
"metadata": null
}
出力は成功ですが、profile
実際には作成されません。
root@nagri:/home/nagri# curl -s --unix-socket /var/lib/lxd/unix.socket a/1.0/profiles -X GET | jq
{
"type": "sync",
"status": "Success",
"status_code": 200,
"metadata": [
"/1.0/profiles/docker",
"/1.0/profiles/lxd-nginx"
]
}
ログには、エラーや警告も表示されません。 /var/log/lxd/lxd.log
t=2016-09-07T16:22:18+0530 lvl=info msg=handling ip=127.0.0.1:49796 method=POST url=/1.0/profiles/testing
私はどんな罪を犯しましたか?助けてください。