Merge branch 'master' into ansible-test
commit
786bbc4b4b
@ -1,60 +1,92 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# This script will create environment variables for all of the output IPs. It
|
# This script will create environment variables for all of the output IPs. An
|
||||||
# will also create a `ANSIBLE_INV` variable that will be a comma separated
|
# anisble inventory file is created as well.
|
||||||
# string of all the IPs. A anisble inventory file called "inventory is created
|
|
||||||
# as well.
|
|
||||||
#
|
#
|
||||||
# Use eval $(./get-vm-ips.sh) to set env vars for ips.
|
# Use eval $(./get-vm-ips.sh) to set env vars for ips.
|
||||||
|
|
||||||
terraform refresh > /dev/null
|
terraform refresh > /dev/null
|
||||||
|
|
||||||
# All terraform outputs in json format.
|
# The file to write the inventory to. This file will be completely overridden.
|
||||||
OUTPUTS_JSON="$(
|
INVENTORY_FILE="inventory"
|
||||||
terraform show -json | \
|
|
||||||
jq '.values.outputs' | \
|
# Grab the the vm name prefix. We do this by greping all *.tfvars files making
|
||||||
sed 's/-/_/g')"
|
# sure to cat terraform.tfvars last. Then we just grab the last grep result,
|
||||||
# Just the IP address outputs in json format. Also all '-' characters are
|
# this way we make sure any value in terraform.tfvars will take priority.
|
||||||
# replaced by '_' becuase '-' causes jq some problems.
|
VM_NAME_PREFIX_VAR="vm-name-prefix"
|
||||||
IPS_JSON="$(
|
VM_NAME_PREFIXES="$( \
|
||||||
echo $OUTPUTS_JSON | \
|
find . -name "*.tfvars" -exec grep "$VM_NAME_PREFIX_VAR" {} \; && \
|
||||||
jq 'to_entries | .[] | select(.key | contains("ips"))')"
|
grep "$VM_NAME_PREFIX_VAR" terraform.tfvars)"
|
||||||
# An array of all node "types"
|
VM_NAME_PREFIX="$(
|
||||||
NODE_TYPE_ARRAY="$(
|
echo "$VM_NAME_PREFIXES" | \
|
||||||
echo $IPS_JSON | \
|
tail -n 1 | \
|
||||||
jq '.value.value | to_entries | .[] | .key' | \
|
sed 's/^.*=\s*"\(.*\)"/\1/g')"
|
||||||
sed 's/"//g' | \
|
|
||||||
sed -z 's/\n/ /g;s/ $/\n/g')"
|
# This command stores the output data in the format below.
|
||||||
|
# [
|
||||||
# Loop over all the node types and create an export line for each IP.
|
# {
|
||||||
VM_IP_EXPORTS="$(
|
# "group": "master",
|
||||||
for TYPE in $NODE_TYPE_ARRAY; do
|
# "vms": [
|
||||||
|
# {
|
||||||
# Convert type, converts "master-ips" to "MASTER"
|
# "hostname": "ansible-test-master-0",
|
||||||
TYPE_UPPER="$(echo ${TYPE^^} | sed s/_.*$//g)"
|
# "ip": "52.14.114.48"
|
||||||
echo "$IPS_JSON" | \
|
# }
|
||||||
jq '.value.value.'"$TYPE"'[]' | \
|
# ]
|
||||||
# Add line numbers starting with 0.
|
# },
|
||||||
nl -v 0 | \
|
# {
|
||||||
# Print an export string with a type placeholder "__TYPE__".
|
# "group": "worker",
|
||||||
awk '{print "export __TYPE___" $1 "=" $2}' | \
|
# "vms": [
|
||||||
sed s/__TYPE__/$TYPE_UPPER/g
|
# {
|
||||||
done)"
|
# "hostname": "ansible-test-worker-0",
|
||||||
|
# "ip": "3.145.121.159"
|
||||||
ANSIBLE_INV="$(
|
# },
|
||||||
echo "$VM_IP_EXPORTS" | \
|
# {
|
||||||
|
# "hostname": "ansible-test-worker-1",
|
||||||
|
# "ip": "18.217.112.176"
|
||||||
|
# }
|
||||||
|
# ]
|
||||||
|
# }
|
||||||
|
# ]
|
||||||
|
DATA="$(terraform show -json | \
|
||||||
|
jq '.values.outputs.groups_hostnames_ips.value | to_entries |
|
||||||
|
map({group: .key, vms:.value | to_entries |
|
||||||
|
map({hostname:.key,ip:.value})})')"
|
||||||
|
|
||||||
|
# Pull out the groups from $DATA. The format is a single string with the groups
|
||||||
|
# separated by spaces, ie. "group1 group2 group3".
|
||||||
|
ANS_GROUPS="$(
|
||||||
|
echo $DATA | \
|
||||||
|
jq '.[] | .group' | \
|
||||||
sed 's/"//g' | \
|
sed 's/"//g' | \
|
||||||
sed 's/^.*=//g' | \
|
tr '\n' ' '
|
||||||
sed -z 's/\n/,/g;s/,$/\n/g')"
|
)"
|
||||||
|
|
||||||
# Create an inventory file for ansible.
|
# Clear the inventory file.
|
||||||
echo "[k8s_nodes]" > inventory
|
cat /dev/null > $INVENTORY_FILE
|
||||||
echo $VM_IP_EXPORTS | \
|
|
||||||
sed 's/"//g' | \
|
# For each group, write the VM info to $INVENTORY_FILE and also print a variable
|
||||||
sed 's/export //g' | \
|
# expression to stdout.
|
||||||
sed 's/ /\n/g' | \
|
for GROUP in $ANS_GROUPS; do
|
||||||
sed 's/^\(.*\)\(=.*\)$/\1 ansible_host\2/g' \
|
|
||||||
>> inventory
|
# Write the inventory file to $INVENTORY_FILE.
|
||||||
|
echo "[$GROUP]" >> $INVENTORY_FILE
|
||||||
echo $VM_IP_EXPORTS | sed 's/" /"\n/g'
|
echo $DATA | \
|
||||||
echo export ANSIBLE_INV=$ANSIBLE_INV
|
jq '.[] | select(.group=="'"$GROUP"'") | .vms[] |
|
||||||
|
"\(.hostname) ansible_host=\(.ip)"' | \
|
||||||
|
sed 's/"//g' \
|
||||||
|
>> $INVENTORY_FILE
|
||||||
|
|
||||||
|
# For this group, collect expressions into VARS. The format is:
|
||||||
|
# HOSTNAME1=0.0.0.0
|
||||||
|
# HOSTNAME2=0.0.0.0
|
||||||
|
VARS="$(
|
||||||
|
echo $DATA | \
|
||||||
|
jq '.[] | select(.group=="'"$GROUP"'") | .vms[] |
|
||||||
|
"\(.hostname)=\(.ip)"' | \
|
||||||
|
sed 's/"//g' | \
|
||||||
|
sed "s/$VM_NAME_PREFIX-//g" | \
|
||||||
|
sed 's/-/_/g'
|
||||||
|
)"
|
||||||
|
# Print the contents of $VARS converted to uppercase.
|
||||||
|
echo "${VARS^^}"
|
||||||
|
done
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
output "ips" {
|
output "ips" {
|
||||||
value = aws_instance.nodes.*.public_ip
|
value = aws_instance.nodes.*.public_ip
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "names" {
|
||||||
|
value = aws_instance.nodes.*.tags.Name
|
||||||
|
}
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
data "template_file" "user-datas" {
|
data "template_file" "user-datas" {
|
||||||
template = file("${var.cloud-init-template}")
|
template = file("${var.cloud-init-template}")
|
||||||
vars = {
|
vars = {
|
||||||
admin-passwd = "${var.root-admin-passwd}"
|
admin-passwd = "${var.root-admin-passwd}"
|
||||||
admin-pub-key = "${var.root-admin-pub-key}"
|
admin-pub-key = "${var.root-admin-pub-key}"
|
||||||
hostname = "${var.hostname-prefix}-${count.index}"
|
hostname = "${var.hostname-prefix}-${count.index}"
|
||||||
|
install-qemu-agent = var.install-qemu-agent
|
||||||
}
|
}
|
||||||
count = var.num
|
count = var.num
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue