Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions technical/installation/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Throughout this installation documentation, some values are used multiple times.
following variables:

* `FQDN`: The fully qualified domain name of the cluster (e.g. aarhus.dk).
* `CERT_MAIL`: The email address used to request a certificate from Let's Encrypt.
* `HUGGING_FACE_TOKEN`: The Hugging Face token used to download the model from Hugging Face.
* `VLLM_API_KEY`: The API key used to communicate with the vLLM service.
* `LITELLM_MASTER_KEY`: API master key to communicate with LiteLLM.
Expand Down Expand Up @@ -109,6 +110,14 @@ Edit `applications/argo-cd-resources/values.yaml`:
repoUrl: https://github.com/aarhusai/<YOUR REPO>.git
```

Edit `applications/cert-manager/templates/cluster-issuer.yaml` and change the email address to your own:

```yaml
spec:
acme:
email: <CERT_MAIL>
```

Now commit the changes to the repository before the next step in Argo installation, which is to install the resources:

```shell
Expand Down