Multiple -f when using helm template

I see the command executed in the job looks like this:
/usr/bin/helm template null manifest-files -s templates/virtualservice.yaml --namespace somenamespace -f values-0.yaml -f values-1.yaml
What are those two values suppose to contain? I am only supplying only yaml file to the job.
Thanks

Hi @mimiandcanada thanks for trying out harness, could you be more specific about the job you are referring to here and give some references to it, I’m having difficult time to get the full context of your question.
Thank-you

Using rollout deployment in the workflow and within the deployment stage, I see the command above as follows:
INFO 2022-09-16 17:29:24 Initializing…
INFO 2022-09-16 17:29:24
INFO 2022-09-16 17:29:24 Rendering chart files using Helm
INFO 2022-09-16 17:29:24 Using helm binary /opt/harness-delegate/client-tools/helm/v3.8.0/helm
INFO 2022-09-16 17:29:24 Running Helm command
INFO 2022-09-16 17:29:24
/usr/bin/helm template null manifest-files -s templates/virtualservice.yaml --namespace somenamespace -f values-0.yaml -f values-1.yaml
I am just curious what values-0.yaml and values-1.yaml represent in the command.

@mimiandcanada this docs should get you some details around it: Helm | Values Files

Thanks!