summaryrefslogtreecommitdiffstats
path: root/ansible/clean_images.yml
blob: f63489d2d524e9849b4059e6479e29e68c6265fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2017 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
- name: pre-clean openstack enviroment
  hosts: yardstick
  vars_files:
    - yardstick_config.yml

  roles:
    - convert_openrc
    - clean_images
    - clean_flavors
#0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
heat_template_version: pike

description: >
  OpenStack containerized Ceilometer Agent Notification service

parameters:
  DockerNamespace:
    description: namespace
    default: 'tripleoupstream'
    type: string
  DockerCeilometerNotificationImage:
    description: image
    default: 'centos-binary-ceilometer-notification: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

  CeilometerAgentNotificationBase:
    type: ../../puppet/services/ceilometer-agent-notification.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 Ceilometer Agent Notification role.
    value:
      service_name: {get_attr: [CeilometerAgentNotificationBase, role_data, service_name]}
      config_settings: {get_attr: [CeilometerAgentNotificationBase, role_data, config_settings]}
      step_config: &step_config
        get_attr: [CeilometerAgentNotificationBase, role_data, step_config]
      service_config_settings: {get_attr: [CeilometerAgentNotificationBase, role_data, service_config_settings]}
      # BEGIN DOCKER SETTINGS
      puppet_config:
        config_volume: ceilometer
        puppet_tags: ceilometer_config
        step_config: *step_config
        config_image: &ceilometer_agent_notification_image
          list_join:
            - '/'
            - [ {get_param: DockerNamespace}, {get_param: DockerCeilometerNotificationImage} ]
      kolla_config:
        /var/lib/kolla/config_files/ceilometer_agent_notification.json:
          command: /usr/bin/ceilometer-agent-notification
      docker_config:
        step_3:
          ceilometer_init_log:
            start_order: 0
            image: *ceilometer_agent_notification_image
            user: root
            command: ['/bin/bash', '-c', 'chown -R ceilometer:ceilometer /var/log/ceilometer']
            volumes:
              - /var/log/containers/ceilometer:/var/log/ceilometer
        step_4:
          ceilometer_agent_notification:
            image: *ceilometer_agent_notification_image
            net: host
            privileged: false
            restart: always
            volumes:
              list_concat:
                - {get_attr: [ContainersCommon, volumes]}
                -
                  - /var/lib/kolla/config_files/ceilometer_agent_notification.json:/var/lib/kolla/config_files/config.json:ro
                  - /var/lib/config-data/ceilometer/etc/ceilometer/:/etc/ceilometer/:ro
            environment:
              - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
        step_5:
          ceilometer_gnocchi_upgrade:
            start_order: 1
            image: *ceilometer_agent_notification_image
            net: host
            detach: false
            privileged: false
            volumes:
              list_concat:
                - {get_attr: [ContainersCommon, volumes]}
                -
                  - /var/lib/config-data/ceilometer/etc/ceilometer/:/etc/ceilometer/:ro
                  - /var/log/containers/ceilometer:/var/log/ceilometer
            command: ["/usr/bin/ceilometer-upgrade", "--skip-metering-database"]
      upgrade_tasks:
        - name: Stop and disable ceilometer agent notification service
          tags: step2
          service: name=openstack-ceilometer-notification state=stopped enabled=no