We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b6dbef commit b753391Copy full SHA for b753391
deploy/utils/setup_benchmarking_resources.sh
@@ -70,6 +70,12 @@ log "Applying benchmarking manifests to namespace $NAMESPACE"
70
export NAMESPACE # ensure envsubst can see it
71
for mf in "$(dirname "$0")/manifests"/*.yaml; do
72
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
+
79
if command -v envsubst >/dev/null 2>&1; then
80
envsubst < "$mf" | kubectl -n "$NAMESPACE" apply -f -
81
else
0 commit comments