aboutsummaryrefslogtreecommitdiffstats
path: root/releasenotes/notes/vhost_default_dir-cac327a0ac05df90.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'releasenotes/notes/vhost_default_dir-cac327a0ac05df90.yaml')
0 files changed, 0 insertions, 0 deletions
n95'>95 96 97 98 99 100 101 102 103
heat_template_version: pike

description: >
  OpenStack containerized Aodh Notifier service

parameters:
  DockerNamespace:
    description: namespace
    default: 'tripleoupstream'
    type: string
  DockerAodhNotifierImage:
    description: image
    default: 'centos-binary-aodh-notifier:latest'
    type: string
  EndpointMap:
    default: {}
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.
    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

resources:

  ContainersCommon:
    type: ./containers-common.yaml

  AodhNotifierBase:
    type: ../../puppet/services/aodh-notifier.yaml
    properties:
      EndpointMap: {get_param: EndpointMap}
      ServiceNetMap: {get_param: ServiceNetMap}
      DefaultPasswords: {get_param: DefaultPasswords}
      RoleName: {get_param: RoleName}
      RoleParameters: {get_param: RoleParameters}

outputs:
  role_data:
    description: Role data for the Aodh API role.
    value:
      service_name: {get_attr: [AodhNotifierBase, role_data, service_name]}
      config_settings:
        map_merge:
          - get_attr: [AodhNotifierBase, role_data, config_settings]
      step_config: &step_config
        get_attr: [AodhNotifierBase, role_data, step_config]
      service_config_settings: {get_attr: [AodhNotifierBase, role_data, service_config_settings]}
      # BEGIN DOCKER SETTINGS
      puppet_config:
        config_volume: aodh
        puppet_tags: aodh_config
        step_config: *step_config
        config_image: &aodh_notifier_image
          list_join:
            - '/'
            - [ {get_param: DockerNamespace}, {get_param: DockerAodhNotifierImage} ]
      kolla_config:
        /var/lib/kolla/config_files/aodh_notifier.json:
          command: /usr/bin/aodh-notifier
          permissions:
            - path: /var/log/aodh
              owner: aodh:aodh
              recurse: true
      docker_config:
        step_4:
          aodh_notifier:
            image: *aodh_notifier_image
            net: host
            privileged: false
            restart: always
            volumes:
              list_concat:
                - {get_attr: [ContainersCommon, volumes]}
                -
                  - /var/lib/kolla/config_files/aodh_notifier.json:/var/lib/kolla/config_files/config.json:ro
                  - /var/lib/config-data/aodh/etc/aodh/:/etc/aodh/:ro
                  - /var/log/containers/aodh:/var/log/aodh
            environment:
              - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
      host_prep_tasks:
        - name: create persistent logs directory
          file:
            path: /var/log/containers/aodh
            state: directory
      upgrade_tasks:
        - name: Stop and disable openstack-aodh-notifier service
          tags: step2
          service: name=openstack-aodh-notifier.service state=stopped enabled=no