Added initial commit files

This commit is contained in:
atusa-bw
2022-09-24 12:30:14 -06:00
commit 3faa49b7ef
24 changed files with 2378 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh -x
SRCROOT="$( CDPATH='' cd -- "$(dirname "$0")" && pwd -P )"
AUTOGENMSG="# This is an auto-generated file. DO NOT EDIT"
echo "${AUTOGENMSG}" > "${SRCROOT}/install_x86_64.yaml"
kustomize build "${SRCROOT}/overlays/x86" >> "${SRCROOT}/install_x86_64.yaml"
echo "${AUTOGENMSG}" > "${SRCROOT}/install_armhf.yaml"
kustomize build "${SRCROOT}/overlays/armhf" >> "${SRCROOT}/install_armhf.yaml"
echo "${AUTOGENMSG}" > "${SRCROOT}/install_argocd.yaml"
kustomize build "${SRCROOT}/argocd" >> "${SRCROOT}/install_argocd.yaml"