UpstreamAuthority cert-manager support (#82)

This commit is contained in:
kfox1111
2023-03-03 20:48:35 +01:00
committed by GitHub
parent a82ee694bf
commit d341c5ad58
8 changed files with 95 additions and 0 deletions
+8
View File
@@ -151,7 +151,15 @@ jobs:
- name: Run chart-testing (install)
run: |
[ "$VALUES" != "default" ] && kubectl create namespace "$VALUES"
post-install() {
[ -x .github/tests/$VALUES/post-install.sh ] && .github/tests/$VALUES/post-install.sh
exit $1
}
trap 'post-install $? $LINENO' EXIT
[ -x .github/tests/$VALUES/pre-install.sh ] && .github/tests/$VALUES/pre-install.sh
ct install --debug \
--namespace $VALUES \
--target-branch ${{ github.base_ref }} \
--exclude-deprecated \
${{ (matrix.values != 'default' && '--helm-extra-set-args "--values=.github/tests/$VALUES/values.yaml"') || '' }}