Fix Hyperlinks in Markdown Documenation

This commit is contained in:
2024-02-06 17:29:19 -08:00
parent 0197e47292
commit 6926e74b8a
4 changed files with 12 additions and 14 deletions

View File

@@ -7,7 +7,7 @@ Nomad requires a Host Volume to persist data across restarts. This will limit th
Postgres will have a default user which is a good one to use for making application specific users and databases. These are defined through environment variables in the nomad job spec so you only need to edit the job spec to meet your requirements. If you run it, it will register with consul but be hidden to Traefik meaning you can only access it through the service mesh.
## Service Dependencies
- A Valid [Host Volume](../../../host_init/README.md#Storage%20and%20ZFS)
- A Valid [Host Volume](../../../host_init/README.md#storage-and-zfs)
## TODO
If you want to deploy this, you will need to verify you have a valid host volume and set the initial postgres root credentials.
@@ -16,8 +16,8 @@ If you want to deploy this, you will need to verify you have a valid host volume
| --- | --- | --- |
| 17 | `source = "postgres"` | Change `postgres` to a valid host volume name |
| 38 | `volume = "postgres-data"` | Change `postgres-data` to the host volume defined on line 15 if applicable |
| 48 | `"POSTGRES_USER"="op://InfraSecrets/Postgres Root/username"` | Change the value to the root username you want. By default, this is a 1password path. See [Managing Secrets](../../REAMDE.md#Managing_Secrets) for more information |
| 49 | `"POSTGRES_PASSWORD"="op://InfraSecrets/Postgres Root/password"` | Change the value to the root password you want. By default, this is a 1password path. See [Managing Secrets](../../REAMDE.md#Managing_Secrets) for more information |
| 48 | `"POSTGRES_USER"="op://InfraSecrets/Postgres Root/username"` | Change the value to the root username you want. By default, this is a 1password path. See [Managing Secrets](../../README.md#managing-secrets) for more information |
| 49 | `"POSTGRES_PASSWORD"="op://InfraSecrets/Postgres Root/password"` | Change the value to the root password you want. By default, this is a 1password path. See [Managing Secrets](../../README.md#managing-secrets) for more information |
## Make a New Database