
We have a set of hostname patterns which is not a thing that ansible supports in inventory files. While we can put hostname patterns into playbooks directly, that does not help us with copying hiera group files since ansible doesn't know about the groups in site.pp and puppet doesn't know about the ansible groups. Instead, do a quick expansion any time the groups.txt file changes and at the end of launch-node. It will be left to admins to run expand-groups.sh whenever they delete a node. Change-Id: I00c60748ddb2d35a3b98f78d828dabebcf065118
32 lines
989 B
Bash
32 lines
989 B
Bash
#!/bin/bash
|
|
|
|
# Copyright 2016 IBM Corp
|
|
#
|
|
# 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.
|
|
|
|
outdir=$(mktemp -d)
|
|
trap "rm -rf $outdir" EXIT
|
|
|
|
outfile=$outdir/generated-groups
|
|
echo "# This file is autogenerated" > $outfile
|
|
|
|
IFS=$'\n'
|
|
for line in $(</etc/ansible/groups.txt); do
|
|
name=$(echo $line | cut -f1 -d' ')
|
|
pattern=$(echo $line | cut -f2 -d' ')
|
|
echo "[${name}]" >> $outfile
|
|
ansible "~${pattern}" --list-hosts >> $outfile
|
|
done
|
|
|
|
cp $outfile /etc/ansible/hosts/generated-groups
|