Initial Commit

This commit is contained in:
Alan Bridgeman 2025-02-11 12:52:05 -06:00
parent ff52718a85
commit b3b43329cd
22 changed files with 1582 additions and 0 deletions

12
create-helm-chart.sh Normal file
View file

@ -0,0 +1,12 @@
#!/bin/bash
# Check if the call should use `python` or `python3`
if command -v python3 &> /dev/null
then
python=python3
else
python=python
fi
# Call the Python script with the arguments passed to the PowerShell script
$python $(realpath ./create-helm-chart.py) $args