mirror of
https://github.com/helm/charts.git
synced 2026-08-22 05:48:09 +00:00
* Add support for deploying Custom App Checks using Helm Chart Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com> * Add a DESIGN document which works a reminder for known issues Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com> * Fix issues from @bencer's review Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com> * Add an script for generating Helm config files with custom AppChecks Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "customAppChecks:"
|
|
for app_check in "$@"
|
|
do
|
|
echo -e " $(basename $app_check): |-"
|
|
while IFS= read -r line
|
|
do
|
|
echo -e " $line"
|
|
done <"$app_check"
|
|
done
|