Files
Phraseanet/infra/helm
Nicolas Maillat fa4450a409 PHRAS-3955 release 4.1.8 rc8 (#4431)
* prepare change log WIP

* PHRAS-3721 helm charts moved

* Update 4.1.8-rc8 CHANGELOG.md

* bump version in .env
2024-01-17 15:49:57 +01:00
..
2020-11-19 13:23:47 +01:00
2024-01-17 15:49:57 +01:00

Helm Chart

Important

Helm charts included in this repositorie have been moved here https://github.com/alchemy-fr/alchemy-helm-charts-repo/tree/main/charts/phraseanet

Helm charts and bash script in this repositorie are not maintained anymore


deprecated Readme


Deploy chart

First you should write your own configuration file named myvalues.yaml (see sample.yaml)

helm install -f myvalues.yaml phraseanet ./all

In case of private registry on minikube

configure first the registry credential addons

minikube addons configure registry-creds
minikube addons enable registry-creds

exemple :

$ minikube addons configure registry-creds

Do you want to enable AWS Elastic Container Registry? [y/n]: y
-- Enter AWS Access Key ID: <put_access_key_here>
-- Enter AWS Secret Access Key: <put_secret_access_key_here>
-- (Optional) Enter AWS Session Token:
-- Enter AWS Region: us-west-2
-- Enter 12 digit AWS Account ID (Comma separated list): <account_number>
-- (Optional) Enter ARN of AWS role to assume:

Do you want to enable Google Container Registry? [y/n]: n

Do you want to enable Docker Registry? [y/n]: n

Do you want to enable Azure Container Registry? [y/n]: n
✅  registry-creds was successfully configured

enable image pull secret and give the name of your secretname into values.yml

  imagepullsecrets: "true"
  secretename: "awsecr-cred"