I have a helm chart uploaded on AWS ECR image. I understand that I can download it using the commands
$ aws ecr get-login-password --region <> | helm registry login --username <> --password-stdin <registry>
$ helm pull <oci:chart> --version <version>
But I am looking to download this helm chart from an AWS Lambda. I was reading about Lambda Layers and seems like I can do it with a kubectl layer https://github.com/aws-samples/aws-lambda-layer-kubectl
or do this with helm3 or goclient.
Is there any way I can download this from a Java AWS Lambda?