I create Spinnaker from Helm Chart (https://github.com/helm/charts/tree/master/stable/spinnaker).
Then I want to add ECR to my Spinnaker. I connect to haylard:
kubectl exec -it -n spinnaker spinnaker-spinnaker-halyard-0 bash
Then I put this command:
hal config provider docker-registry account add ecr-registry --repositories REPOSITORY_NAME --address https://ID.dkr.ecr.REGION.amazonaws.com --username AWS --password-command "aws --region REGION ecr get-authorization-token --output text --query 'authorizationData[].authorizationToken' | base64 -d | sed 's/^AWS://'"
But on this spinnaker-spinnaker-halyard-0 aws CLI is not installed. So this ECR cannot be added.
Any ideas?