I am trying to deploy harvets with K8s
And I am using Templates customization:
conf_path: customconf
in harvest.yml
customconf is a directory copy from conf,
and we make some changes here.
When running
docker run --rm \ --env UID=$(id -u) --env GID=$(id -g) \ --entrypoint "bin/harvest" \ --volume "$(pwd):/opt/temp" \ --volume "$(pwd)/harvest.yml:/opt/harvest/harvest.yml" \ ghcr.io/netapp/harvest \ generate docker full \ --output harvest-compose.yml
I think I should change the default setting from the document, and how to change?
Should I add
--volume "$(pwd)/customconf:/opt/harvest/customconf"\ ?