Fix opt description for s3.py

Revised descriptions to remove redundent information [0]

[0] https://wiki.openstack.org/wiki/ConfigOptionsConsistency

Blueprint centralize-config-options-newton

Change-Id: I7755c39480d329ba8216d99586c5e94b69e67e6d
This commit is contained in:
MikeG451 2016-08-05 17:11:55 +00:00
parent 4cbfed44f4
commit 98dd53bbd3

View File

@ -1,10 +1,3 @@
# needs:fix_opt_description
# needs:check_deprecation_status
# needs:check_opt_group_and_type
# needs:fix_opt_description_indentation
# needs:fix_opt_registration_consistency
# Copyright 2010 United States Government as represented by the # Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration. # Administrator of the National Aeronautics and Space Administration.
# Copyright 2016 OpenStack Foundation # Copyright 2016 OpenStack Foundation
@ -30,24 +23,14 @@ s3_opts = [
deprecated_reason='EC2 API related options are not supported.', deprecated_reason='EC2 API related options are not supported.',
default='/tmp', default='/tmp',
help=""" help="""
Parent directory for tempdir used for image Parent directory for tempdir used for image decryption
decryption
Possible values:
* Any directory path, /tmp is default
"""), """),
cfg.StrOpt('s3_host', cfg.StrOpt('s3_host',
deprecated_for_removal=True, deprecated_for_removal=True,
deprecated_reason='EC2 API related options are not supported.', deprecated_reason='EC2 API related options are not supported.',
default='$my_ip', default='$my_ip',
help=""" help="""
Hostname or IP for OpenStack to use when Hostname or IP for OpenStack to use when accessing the S3 API
accessing the S3 API
Possible values:
* IP address or Hostname
"""), """),
cfg.PortOpt('s3_port', cfg.PortOpt('s3_port',
deprecated_for_removal=True, deprecated_for_removal=True,
@ -77,8 +60,7 @@ Port used when accessing the S3 API. It should be in the range of
deprecated_reason='EC2 API related options are not supported.', deprecated_reason='EC2 API related options are not supported.',
default=False, default=False,
help=""" help="""
Whether to affix the tenant id to the Whether to affix the tenant id to the access key when downloading from S3
access key when downloading from S3
"""), """),
] ]