aboutsummaryrefslogtreecommitdiffstats
path: root/default_passwords.yaml
blob: c85881e542096c9d1057b15e8f1c0957f0120766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
heat_template_version: ocata

description: Passwords we manage at the top level

parameters:
  DefaultMysqlRootPassword:
    type: string
  DefaultRabbitCookie:
    type: string
  DefaultHeatAuthEncryptionKey:
    type: string
  DefaultPcsdPassword:
    type: string
  DefaultHorizonSecret:
    type: string

outputs:
  passwords:
    description: Password data
    value:
      mysql_root_password: {get_param: DefaultMysqlRootPassword}
      rabbit_cookie: {get_param: DefaultRabbitCookie}
      heat_auth_encryption_key: {get_param: DefaultHeatAuthEncryptionKey}
      pcsd_password: {get_param: DefaultPcsdPassword}
      horizon_secret: {get_param: DefaultHorizonSecret}
="p">: {} 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 MonitoringSubscriptionAodhEvaluator: default: 'overcloud-ceilometer-aodh-evaluator' type: string resources: AodhBase: type: ./aodh-base.yaml properties: ServiceData: {get_param: ServiceData} ServiceNetMap: {get_param: ServiceNetMap} DefaultPasswords: {get_param: DefaultPasswords} EndpointMap: {get_param: EndpointMap} RoleName: {get_param: RoleName} RoleParameters: {get_param: RoleParameters} outputs: role_data: description: Role data for the Aodh Evaluator service. value: service_name: aodh_evaluator monitoring_subscription: {get_param: MonitoringSubscriptionAodhEvaluator} config_settings: get_attr: [AodhBase, role_data, config_settings] step_config: | include tripleo::profile::base::aodh::evaluator upgrade_tasks: - name: Check if aodh_evaluator is deployed command: systemctl is-enabled openstack-aodh-evaluator tags: common ignore_errors: True register: aodh_evaluator_enabled - name: "PreUpgrade step0,validation: Check service openstack-aodh-evaluator is running" shell: /usr/bin/systemctl show 'openstack-aodh-evaluator' --property ActiveState | grep '\bactive\b' when: aodh_evaluator_enabled.rc == 0 tags: step0,validation - name: Stop aodh_evaluator service tags: step1 when: aodh_evaluator_enabled.rc == 0 service: name=openstack-aodh-evaluator state=stopped