This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
LinuxUpskillChallenge/day1_geninventory.sh

34 lines
884 B
Bash
Executable File

#
# Day 1 - Generate Inventory
# Requires linode-cli to be installed (`pip3 install linode-cli`)
# The hosts file generated requires ansible (`pip3 install ansible`)
# This will crush any ansible.cfg and hosts files in the current directory.
# Default ansible group and linode label
if [ -z "$CATEGORY" ]
then
CATEGORY="UpskillChallengeNode"
fi
# fetch IP address from Linode. Assumes one device (TODO: handle a swarm of them).
NODEIP=$(linode-cli linodes list --format 'ipv4' --label "$CATEGORY" --text | tail -n 1)
# create or clobber hosts file
cat > hosts << EOF
[$CATEGORY]
$NODEIP ansible_user=root
EOF
# create or clobber hosts file
cat > ansible.cfg << EOF
[defaults]
inventory = $(pwd)/hosts
[ssh_connection]
ssh_args = "-o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey"
pipelining = true
EOF
ansible "$CATEGORY" -m ping