You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
615 B

3 years ago
# eqx
This repository contains an archive of crufty scriptlets to deploy servers
on Equinix's bare metal network.
3 years ago
## Token
export PACKET_TOKEN=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Or
cat $HOME/.packet-cli.json
{
"token": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
}
## Dependencies
apt install jq
git clone https://github.com/packethost/packet-cli
mkdir -p ~/bin
wget -O ~/bin/packet https://github.com/packethost/packet-cli/releases/download/0.1.1/packet-linux-amd64
chmod +x ~/bin/packet
3 years ago
##
Configure server at Equinix, set "iPXE Script URL" to:
https://code.forksand.com/forksand/eqx/src/branch/master/ipxe
3 years ago