Initial Commit
This commit is contained in:
parent
ff52718a85
commit
b3b43329cd
22 changed files with 1582 additions and 0 deletions
12
create-helm-chart.sh
Normal file
12
create-helm-chart.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue