diff options
author | Oliver Walsh <owalsh@redhat.com> | 2017-07-10 15:51:20 +0100 |
---|---|---|
committer | Oliver Walsh <owalsh@redhat.com> | 2017-07-17 13:56:15 +0100 |
commit | 8e5bb308cf0832c1ea3d8aa315542cbfa882b310 (patch) | |
tree | 9c97878f76013c6fb83c74de78c2e126b40d4885 /puppet/services/iscsid.yaml | |
parent | 1bb56bce55845ddf0c2a0d330c46b0fd03f9036c (diff) |
Refactor iscsi initiator-name reset into separate service
This currently assumes nova-compute and iscsid run in the same context which
isn't true for a containerized deployment
Change-Id: I11232fc412adcc18087928c281ba82546388376e
Depends-On: I91f1ce7625c351745dbadd84b565d55598ea5b59
Depends-On: I0cbb1081ad00b2202c9d913e0e1759c2b95612a5
Diffstat (limited to 'puppet/services/iscsid.yaml')
-rw-r--r-- | puppet/services/iscsid.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/puppet/services/iscsid.yaml b/puppet/services/iscsid.yaml new file mode 100644 index 00000000..9510df3b --- /dev/null +++ b/puppet/services/iscsid.yaml @@ -0,0 +1,41 @@ +heat_template_version: pike + +description: > + Configure iscsid + +parameters: + ServiceData: + default: {} + description: Dictionary packing service data + type: json + ServiceNetMap: + default: {} + description: Mapping of service_name -> network name. Typically set + via parameter_defaults in the resource registry. This + mapping overrides those in ServiceNetMapDefaults. + type: json + DefaultPasswords: + default: {} + type: json + RoleName: + default: '' + description: Role name on which the service is applied + type: string + RoleParameters: + default: {} + description: Parameters specific to the role + type: json + EndpointMap: + default: {} + description: Mapping of service endpoint -> protocol. Typically set + via parameter_defaults in the resource registry. + type: json + +outputs: + role_data: + description: Role data for iscsid + value: + service_name: iscsid + config_setting: {} + step_config: | + include ::tripleo::profile::base::iscsid |