|
60 | 60 | 'Can be supplied as "ipa-listen-port" kernel parameter.'), |
61 | 61 |
|
62 | 62 | # This is intentionally not settable via kernel command line, as it |
63 | | - # requires configuration parameters from oslo_service which are not |
64 | | - # configurable over the command line and require files-on-disk. |
| 63 | + # requires configuration parameters which are not configurable over |
| 64 | + # the command line and require files-on-disk. |
65 | 65 | # Operators who want to use this support should configure it statically |
66 | 66 | # as part of a ramdisk build. |
67 | 67 | cfg.BoolOpt('listen_tls', |
68 | 68 | default=False, |
69 | 69 | help='When true, IPA will host API behind TLS. You will also ' |
70 | | - 'need to configure [ssl] group options for cert_file, ' |
71 | | - 'key_file, and, if desired, ca_file to validate client ' |
72 | | - 'certificates.'), |
| 70 | + 'need to configure tls_cert_file option and tls_key_file ' |
| 71 | + 'option.'), |
| 72 | + |
| 73 | + cfg.StrOpt('tls_cert_file', |
| 74 | + help="Certificate file to use when starting " |
| 75 | + "the server securely.", |
| 76 | + deprecated_group='ssl', |
| 77 | + deprecated_name='cert_file'), |
| 78 | + cfg.StrOpt('tls_key_file', |
| 79 | + help="Private key file to use when starting " |
| 80 | + "the server securely.", |
| 81 | + deprecated_group='ssl', |
| 82 | + deprecated_name='key_file'), |
73 | 83 |
|
74 | 84 | cfg.BoolOpt('enable_auto_tls', |
75 | 85 | default=True, |
|
0 commit comments