Skip to content

Commit b753391

Browse files
committed
avoid applying pvc access manifest
1 parent 3b6dbef commit b753391

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

deploy/utils/setup_benchmarking_resources.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ log "Applying benchmarking manifests to namespace $NAMESPACE"
7070
export NAMESPACE # ensure envsubst can see it
7171
for mf in "$(dirname "$0")/manifests"/*.yaml; do
7272
if [[ -f "$mf" ]]; then
73+
# Skip pvc-access-pod.yaml as it's managed by inject_manifest.py
74+
if [[ "$(basename "$mf")" == "pvc-access-pod.yaml" ]]; then
75+
log "Skipping $mf (managed by inject_manifest.py)"
76+
continue
77+
fi
78+
7379
if command -v envsubst >/dev/null 2>&1; then
7480
envsubst < "$mf" | kubectl -n "$NAMESPACE" apply -f -
7581
else

0 commit comments

Comments
 (0)