Initial Commit

This commit is contained in:
2024-02-13 17:03:06 +00:00
commit 097fd27ed1
11 changed files with 574 additions and 0 deletions

12
machine-setup.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
yum install -y docker perl
systemctl enable --now docker
VERSION=v4.40.5
BINARY=yq_linux_amd64
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
tar xz && mv ${BINARY} /usr/bin/yq