inveniosoftware / helm-invenio

Helm charts for deploying an Invenio instance
https://helm-invenio.readthedocs.io
7 stars 19 forks source link

K8S: Add secrets, init files and documentation to ease deployment #17

Closed jlebonzec closed 3 years ago

jlebonzec commented 3 years ago

The secrets are now generated through content given in the values.yaml file. There is a job-install.yaml file that will initiate the database on the first deployment.

The minimum values to override to get this working are:

---
host: my-host

ingress:
  sslSecretName: mySSLSecret

web:
  image: built-web-docker-image
  imagePullSecret: docker-repo-secret

worker:
  image: built-worker-docker-image
  imagePullSecret: docker-repo-secret

Also enhanced documentation 🥳