In PR #1771, the hostPath for results-cache PV was updated from results-cache to results_cache (dash to underscore), but the corresponding directory creation in tools/deployment/package-helm/test.sh line 11 was not updated.
Currently, test.sh creates:
mkdir -p /tmp/clp/var/{data,log}/{database,queue,redis,results-cache}
It should be updated to:
mkdir -p /tmp/clp/var/{data,log}/{database,queue,redis,results_cache}
Context:
In PR #1771, the hostPath for results-cache PV was updated from
results-cachetoresults_cache(dash to underscore), but the corresponding directory creation intools/deployment/package-helm/test.shline 11 was not updated.Currently, test.sh creates:
mkdir -p /tmp/clp/var/{data,log}/{database,queue,redis,results-cache}It should be updated to:
mkdir -p /tmp/clp/var/{data,log}/{database,queue,redis,results_cache}Context:
createLocalPv: #1771createLocalPv: #1771 (comment)