osp.edpm.edpm_container_configs module – Generate Container configs in JSON

New in osp.edpm 2.9

Synopsis

  • It will generate the Container JSON configs from config-download data in YAML.

Requirements

The below requirements are needed on the host that executes this module.

  • None

Parameters

Parameter

Comments

config_data

dictionary / required

Content of kolla_config.yaml file (must be YAML format)

Examples

- name: Write container config json files
  edpm_container_configs:
    config_data:
      /var/lib/kolla/config_files/ceilometer_agent_compute.json:
        command: /usr/bin/ceilometer-polling compute
        config_files:
        - dest: /
          merge: true
          preserve_properties: true
          source: /var/lib/kolla/config_files/src/*
      /var/lib/kolla/config_files/ceilometer_agent_notification.json:
        command: /usr/bin/ceilometer-agent-notification
        config_files:
        - dest: /
          merge: true
          preserve_properties: true
          source: /var/lib/kolla/config_files/src/*

Authors

  • EDPM team