* Add root-level spire-lib chart Signed-off-by: Faisal Memon <[email protected]> * Make spire consume root-level spire-lib Signed-off-by: Faisal Memon <[email protected]> * Prepare chart dependencies in CI Signed-off-by: Faisal Memon <[email protected]> * Document DCO requirement in CODEX Signed-off-by: Faisal Memon <[email protected]> * Centralize local chart dependency prep Signed-off-by: Faisal Memon <[email protected]> * Exclude spire-lib from chart-testing install Signed-off-by: Faisal Memon <[email protected]> * Rename CODEX guide to AGENTS Signed-off-by: Faisal Memon <[email protected]> * Add make target for chart dependencies Signed-off-by: Faisal Memon <[email protected]> --------- Signed-off-by: Faisal Memon <[email protected]>
21 lines
432 B
Bash
Executable File
21 lines
432 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT="$(readlink -f "$0")"
|
|
SCRIPTPATH="$(dirname "${SCRIPT}")"
|
|
REPO_ROOT="$(dirname "${SCRIPTPATH}")/.."
|
|
|
|
charts=(
|
|
"charts/spire"
|
|
"charts/spire-ha-agent"
|
|
"charts/spire-nested"
|
|
)
|
|
|
|
for chart in "${charts[@]}"; do
|
|
chart_path="${REPO_ROOT}/${chart}"
|
|
if grep -q 'file://../spire-lib' "${chart_path}/Chart.yaml"; then
|
|
helm dependency update --skip-refresh "${chart_path}"
|
|
fi
|
|
done
|