@@ -28,7 +28,7 @@ The repository stores different CI/CD variables necessary for authentication dur
Depending on their domain, they carry different prefixes:
*`REVIEW_` for the review app hosted on [www3-dev.tuhh.de]()
*`SSH_` for the review app hosted on [www3.tuhh.de]()
*`TUHH_` for the deployment on the web server of the institute
*`TUHH_` for the deployment on the institute server [ssh.mat.tu-harburg.de]()
Sensible variables can only be accessed for jobs running on the protected branches `master` and `dev`. Depending on their suffix, they are used at certain parts of the corresponding jobs in the pipeline.
...
...
@@ -48,6 +48,12 @@ This variable stores the output of
ssh-keyscan $NAME_OF_THE_HOST
```
If ssh, e.g. the hostkey for `ssh.mat.tu-harburg.de` changes, update this info by copying the output of
```bash
ssh-keyscan ssh.mat.tu-harburg.de
```
to the runner variable `$TUHH_KNOWN_HOSTS`.
See also [https://stackoverflow.com/a/57332478](https://stackoverflow.com/a/57332478)