diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de153db --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +artifacts diff --git a/README.md b/README.md index 6cc847b..cfe96f3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,39 @@ -# k3ama - Air-gap Migration Assistant +# k3ama - Air-gap Migration Assistant (working name) +```bash +# _ _____ _ __ __ _ +# | | _|___ / / \ | \/ | / \ +# | |/ / |_ \ / _ \ | |\/| | / _ \ +# | < ___) / ___ \| | | |/ ___ \ +# |_|\_\____/_/ \_\_| |_/_/ \_\ k3s- Air-gap Migration Assistant +# +# , , _______________________________ +# ,-----------|'------'| | | +# /. '-' |-' |_____________________________| +# |/| | | +# | .________.'----' _______________________________ +# | || | || | | +# \__|' \__|' |_____________________________| +# +# |‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾| +# |________________________________________________________| +# | +# |‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾| +# |________________________________________________________| +``` +WARNING- Work In Progress +## Charts to include +* Rancher +* Registry +* Minio +* Longhorn +* git-http-backend +* argo + +#@ TODO +* Write the thing +* Include Vagrantfile for testing ### Other possible names * k3vac diff --git a/charts/registry.yaml b/charts/registry.yaml new file mode 100644 index 0000000..e69de29 diff --git a/k3ama.sh b/k3ama.sh new file mode 100755 index 0000000..a015659 --- /dev/null +++ b/k3ama.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +# , , _______________________________ +# ,-----------|'------'| | | +# /. '-' |-' |_____________________________| +# |/| | | +# | .________.'----' _______________________________ +# | || | || | | +# \__|' \__|' |_____________________________| +# +# |‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾| +# |________________________________________________________| +# | +# |‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾| +# |________________________________________________________| +# +# k3ama - airgap migration assistant + +usage () { + echo "USAGE: $0 [--image-list rancher-images.txt] [--images rancher-images.tar.gz]" + echo " [-l|--image-list path] text file with list of images; one image per line." + echo " [-i|--images path] tar.gz generated by docker save." + echo " [-h|--help] Usage message" +}