This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix shared_secert not getting set correctly * Update to use specific image version Fail deploy if no JetStream Server is set * Use helm-docs for documentation * Try to shrink table width * More shrinking * Shrink reCAPTCHA registration?
- Loading branch information
Showing
10 changed files
with
281 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{{ define "chart.about" }} | ||
## About | ||
|
||
This is a first try for a Helm Chart for the [Matrix](https://matrix.org) Homeserver [Dendrite](https://github.com/matrix-org/dendrite) | ||
|
||
This chart creates a polylith, where every component is in its own deployment and requires a Postgres server aswell as a NATS JetStream server. | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{{ define "chart.appservices" }} | ||
## Usage with appservices | ||
|
||
Create a folder `appservices` and place your configurations in there. The configurations will be read and placed in a secret `dendrite-appservices-conf`. | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{{ define "chart.dbCreation" }} | ||
## Manual database creation | ||
|
||
(You can skip this, if you're deploying the PostgreSQL dependency) | ||
|
||
You'll need to create the following databases before starting Dendrite (see [install.md](https://github.com/matrix-org/dendrite/blob/master/docs/INSTALL.md#configuration)): | ||
|
||
```postgres | ||
create database dendrite_federationapi; | ||
create database dendrite_mediaapi; | ||
create database dendrite_roomserver; | ||
create database dendrite_userapi_accounts; | ||
create database dendrite_keyserver; | ||
create database dendrite_userapi_devices; | ||
create database dendrite_syncapi; | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
for i in mediaapi syncapi roomserver federationapi appservice keyserver userapi_accounts userapi_devices; do | ||
sudo -u postgres createdb -O dendrite dendrite_$i | ||
done | ||
``` | ||
|
||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{{ define "chart.state" }} | ||
Status: **NOT PRODUCTION READY** | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
{{ template "chart.badgesSection" . }} | ||
{{ template "chart.description" . }} | ||
{{ template "chart.state" . }} | ||
{{ template "chart.about" . }} | ||
{{ template "chart.dbCreation" . }} | ||
{{ template "chart.appservices" . }} | ||
{{ template "chart.maintainersSection" . }} | ||
{{ template "chart.sourcesSection" . }} | ||
{{ template "chart.requirementsSection" . }} | ||
{{ template "chart.valuesSection" . }} | ||
{{ template "helm-docs.versionFooter" . }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.