Fix disk size issue for latest multinode-gate

PODs are being evicted due reduced disk size (30 from 64G).
The issue is constantly appearing around MAAS image deployment.

Change-Id: If8a0717a7f57d77d0c91a6798c774dc9cc06ecb6
This commit is contained in:
Kaspars Skels 2019-10-16 16:31:05 -05:00
parent 2b67ffaefb
commit 86c2da9a14
1 changed files with 3 additions and 3 deletions

View File

@ -13,19 +13,19 @@
"disk_layouts":{ "disk_layouts":{
"simple": { "simple": {
"vda": { "vda": {
"size": 30, "size": 64,
"io_profile": "fast", "io_profile": "fast",
"bootstrap": true "bootstrap": true
} }
}, },
"multi": { "multi": {
"vda": { "vda": {
"size": 15, "size": 48,
"io_profile": "fast", "io_profile": "fast",
"bootstrap": true "bootstrap": true
}, },
"vdb": { "vdb": {
"size": 15, "size": 16,
"io_profile": "fast", "io_profile": "fast",
"format": {"type": "ext4", "mountpoint": "/var"} "format": {"type": "ext4", "mountpoint": "/var"}
} }