Remove references to DefaultPasswords

The DefaultPasswords interface was removed from tripleo-heat-templates
in Change-Id If83d0f3d72a229d737a45b2fd37507dc11a04649.

Change-Id: I42913c36b634ad1fb1c1b4cc0c798fe98dc430c2
This commit is contained in:
Carlos Goncalves 2021-02-26 11:20:19 +01:00
parent 2106d94c38
commit e264e81935
3 changed files with 0 additions and 14 deletions

@ -131,7 +131,6 @@ follows::
get_param: {{role.name}}Services
ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
EndpointMap: {get_attr: [EndpointMap, endpoint_map]}
DefaultPasswords: {get_attr: [DefaultPasswords, passwords]}
...
{% endfor %}

@ -34,9 +34,6 @@ is. So lets look at a very minimal service template::
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
@ -121,7 +118,6 @@ this is called::
ServiceData: {get_param: ServiceData}
ServiceNetMap: {get_param: ServiceNetMap}
EndpointMap: {get_param: EndpointMap}
DefaultPasswords: {get_param: DefaultPasswords}
RoleName: {get_param: RoleName}
RoleParameters: {get_param: RoleParameters}
@ -139,13 +135,6 @@ following:
you'll be able to get what port, what protocol, and even different entries
for the public, internal and admin endpoints.
* **DefaultPasswords**: Defines the default passwords for only some of the
services... Namely, the following parameters are available through here:
DefaultMysqlRootPassword, DefaultRabbitCookie, DefaultHeatAuthEncryptionKey,
DefaultPcsdPassword, DefaultHorizonSecret. Note that TripleO usually will
autogenerate the passwords with secure, randomly generated defaults, so this
is barely used.
* **RoleName**: This is the name of the role on which the service is applied.
It could be one of the default roles (e.g. "Controller" or "Compute"), or a
custom role, depending on how you're deploying.

@ -363,7 +363,6 @@ to look in the ``resources`` section of your template for something like this::
type: ./apache.yaml
properties:
ServiceNetMap: {get_param: ServiceNetMap}
DefaultPasswords: {get_param: DefaultPasswords}
EndpointMap: {get_param: EndpointMap}
Note that this is of type ./apache.yaml which is the template that contains the
@ -769,7 +768,6 @@ the following::
type: OS::TripleO::Services::TLSProxyBase
properties:
ServiceNetMap: {get_param: ServiceNetMap}
DefaultPasswords: {get_param: DefaultPasswords}
EndpointMap: {get_param: EndpointMap}
EnableInternalTLS: {get_param: EnableInternalTLS}