eva app and related helm charts
helm repo add eva-app https://mellerikat.github.io/eva-app
helm repo update
Update the list of available charts from the chart repository.
helm repo update
Save the chart’s default values to a file, then customize the contents to match your environment’s configuration.
Caution, please be aware that the default value template can change with each new version of the chart.
helm show values eva-app/eva-app > my-values.yaml
Update eva-app.
helm upgrade --install eva-app --namespace eva-app eva-app/eva-app --values my-values.yaml
For deployments outside of the AWS cloud (such as on-premise or NPC), the following command may be required to pull the eva-app image from its repository in AWS ECR.
cat .aws/credentials
[eva-app-erc-pull] # aws key to pull eva app docker image from ecr
aws_access_key_id = ???
aws_secret_access_key = ???
region=ap-northeast-2
eva_app_ecr_password=$(aws --profile eva-app-ecr-pull ecr get-login-password --region ${region})
helm upgrade --install eva-app --values my-values.yaml --namespace eva-app eva-app/eva-app --set imagePullSecrets.password="${eva_app_ecr_password}"