
o-c-c has a special mode which explodes deployments into individual files. This will effectively do the same for local copies of server metadata. Change-Id: I505d02a190ac93f243aeaf6d05256e66e832c8bf
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
---
|
|
# Update the collect files to contain metadata obtained from Heat
|
|
#
|
|
- name: "Ensure heat local-data directory exists"
|
|
sudo: yes
|
|
file: path=/var/lib/os-collect-config/local-data state=directory
|
|
- name: "Copy deployments exploder script"
|
|
sudo: yes
|
|
copy:
|
|
src: files/explode-deployments.py
|
|
dest: /usr/local/bin/explode-deployments
|
|
mode: 0755
|
|
- name: "Write out metadata"
|
|
sudo: yes
|
|
template:
|
|
src: templates/host_metadata.json.j2
|
|
dest: /var/lib/os-collect-config/local-data/host_metadata.json
|
|
- name: "Explode deployments"
|
|
sudo: yes
|
|
command: /usr/local/bin/explode-deployments /var/lib/os-collect-config/local-data
|