Flavor extra_specs 수정하기

리눅스/OpenStack|2017. 7. 19. 17:44
반응형

# nova flavor-show sysdocu_temp3

+----------------------------+-----------+

| Property                   | Value     |

+----------------------------+-----------+

| OS-FLV-DISABLED:disabled   | False     |

| OS-FLV-EXT-DATA:ephemeral  | 0         |

| disk                       | 32        |

| extra_specs                | {}        |         <-- 아무것도 없음

| id                         | 3         |

| name                       | sysdocu_temp3 |

| os-flavor-access:is_public | True      |

| ram                        | 2048      |

| rxtx_factor                | 1.0       |

| swap                       |           |

| vcpus                      | 2         |

+----------------------------+-----------+


# openstack flavor set sysdocu_temp3 --property sysdocu=true


# nova flavor-show sysdocu_temp3

+----------------------------+-----------------+

| Property                   | Value           |

+----------------------------+-----------------+

| OS-FLV-DISABLED:disabled   | False           |

| OS-FLV-EXT-DATA:ephemeral  | 0               |

| disk                       | 32              |

| extra_specs                | {"sysdocu": "true"} |         <-- 생겨났음

| id                         | 3               |

| name                       | sysdocu_temp3       |

| os-flavor-access:is_public | True            |

| ram                        | 2048            |

| rxtx_factor                | 1.0             |

| swap                       |                 |

| vcpus                      | 2               |

+----------------------------+-----------------+


추가 예시 (새로운것만 추가해준다)
# openstack flavor set rCore.S2 --property nonshare-8core-zone1=true

삭제 예시 (삭제할 항목명만 입력한다)
# openstack flavor unset rCore.S2 --property nonshare-8core-zone1



반응형

댓글()