|
27 | 27 | LOG = logging.getLogger(__name__) |
28 | 28 |
|
29 | 29 |
|
30 | | -DISK_TYPE_CHOICES = ['common', 'high', 'ultrahigh'] |
| 30 | +DISK_TYPE_CHOICES = ['high', 'ultrahigh'] |
31 | 31 | NODE_TYPE_CHOICES = ['ess', 'ess-cold', 'ess-client', 'ess-master'] |
32 | | -VOLUME_TYPE_CHOICES = ['ULTRAHIGH', 'COMMON', 'HIGH'] |
| 32 | +VOLUME_TYPE_CHOICES = ['ULTRAHIGH', 'HIGH'] |
33 | 33 | UPGRADE_TYPE_CHOICES = ['same', 'cross', 'cross-engine'] |
34 | 34 |
|
35 | 35 |
|
@@ -103,7 +103,7 @@ def get_parser(self, prog_name): |
103 | 103 | 'If datastore_type is `elasticsearch` supported versions: ' |
104 | 104 | '(7.6.2, 7.9.3, 7.10.2)\n' |
105 | 105 | 'If datastore_type is `opensearch` supported versions: ' |
106 | | - '(1.3.6)\n' |
| 106 | + '(1.3.6, 2.11.0)\n' |
107 | 107 | '(default datastore_version: 7.10.2).' |
108 | 108 | ), |
109 | 109 | ) |
@@ -147,12 +147,12 @@ def get_parser(self, prog_name): |
147 | 147 | '--volume-type', |
148 | 148 | metavar='{' + ','.join(DISK_TYPE_CHOICES) + '}', |
149 | 149 | type=lambda s: s.upper(), |
150 | | - default='COMMON', |
| 150 | + default='HIGH', |
151 | 151 | dest='volume_type', |
152 | 152 | choices=[s.upper() for s in DISK_TYPE_CHOICES], |
153 | 153 | help=_( |
154 | | - 'Volume type. Supported types: COMMON, HIGH, ULTRAHIGH. ' |
155 | | - '(default value: COMMON)' |
| 154 | + 'Volume type. Supported types: HIGH, ULTRAHIGH. ' |
| 155 | + '(default value: HIGH)' |
156 | 156 | ), |
157 | 157 | ) |
158 | 158 | network_group = parser.add_argument_group('Network Parameters') |
|
0 commit comments