Deploying Jarvis ASR Service on AWS EKS Helm Chart Issues

I tried installing the helm chart:

$ helm install --namespace jarvis jarvis .

Error: template: jarvis-api/templates/modeldeploykey.yaml:1:12: executing “jarvis-api/templates/modeldeploykey.yaml” at <len .Values.modelRepoGenerator.modelDeployKey>: error calling len: len of nil pointer

and I am getting the same error as above

$ helm fetch https://helm.ngc.nvidia.com/ea-2-jarvis/charts/jarvis-api-0.2.1-ea.tgz --username=’$oauthtoken’ --password=$NGC_API_KEY

Error: failed to fetch https://helm.ngc.nvidia.com/ea-2-jarvis/charts/jarvis-api-0.2.1-ea.tgz : 401 Unauthorized

I am using EKS and need streamline EKS instructions

Hi @adam.sabra
Could you please re-validate the NGC_API_KEY, just to eliminate 401 error due any API key mismatch issue?

Thanks

Hi @adam.sabra
Could you please try below command:

helm fetch https://helm.ngc.nvidia.com/nvidia/jarvis/charts/jarvis-api-1.2.1-beta.tgz --username='$oauthtoken' --password=<YOUR API KEY
helm install jarvis-api --set ngcCredentials.password=`echo -n $NGC_API_KEY | base64 -w0` --set ngcCredentials.email=your_email@your_domain.com --set modelRepoGenerator.modelDeployKey=`echo -n tlt_encode | base64 -w0`

Thanks