From 4c7a20f2c5c8dc0eea10b77004b27007a8f9ee9f Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Tue, 1 Aug 2023 14:34:26 +0200 Subject: [PATCH] update doc --- seed/forgejo/README.md | 33 ++++++++++++++++++++++++++ seed/forgejo/applicationservice.yml | 1 + seed/nsd-local/README.md | 26 ++++++++++++++++++++ seed/nsd-local/applicationservice.yml | 1 + seed/nsd/README.md | 23 ++++++++++++++++++ seed/postgresql/README.md | 25 +++++++++++++++++++ seed/postgresql/applicationservice.yml | 1 + seed/unbound/README.md | 26 ++++++++++++++++++++ 8 files changed, 136 insertions(+) diff --git a/seed/forgejo/README.md b/seed/forgejo/README.md index 12aad05..ac712c2 100644 --- a/seed/forgejo/README.md +++ b/seed/forgejo/README.md @@ -11,6 +11,39 @@ Forgejo, a community managed lightweight code hosting solution. [For more informations](https://forgejo.org/) +## Examples + +Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file. + +With minimum providers: + +``` +forgejo: + applicationservice: forgejo + zones_name: + - localdns + - reverseproxy + - smtp + - redis + - oauth2 + - postgresql +``` + +With all providers: + +``` +forgejo: + applicationservice: forgejo + zones_name: + - journald + - localdns + - reverseproxy + - smtp + - redis + - oauth2 + - postgresql +``` + ## Dependances - [base-fedora-38](../base-fedora-38/README.md) diff --git a/seed/forgejo/applicationservice.yml b/seed/forgejo/applicationservice.yml index e918dc8..5bc593f 100644 --- a/seed/forgejo/applicationservice.yml +++ b/seed/forgejo/applicationservice.yml @@ -8,3 +8,4 @@ depends: - relay-mail-client - redis-client - oauth2-client +service: true diff --git a/seed/nsd-local/README.md b/seed/nsd-local/README.md index 7cbb4fa..2b49f57 100644 --- a/seed/nsd-local/README.md +++ b/seed/nsd-local/README.md @@ -11,6 +11,32 @@ NSD, an authoritative DNS name server for local resolution. [For more informations](https://www.nlnetlabs.nl/projects/nsd/about/) +## Examples + +Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file. + +With minimum providers: + +``` +nsd-local: + applicationservice: nsd-local + provider_zone: localdns + zones_name: + - localdns +``` + +With all providers: + +``` +nsd-local: + applicationservice: nsd-local + provider_zone: localdns + zones_name: + - journald + - externaldns + - localdns +``` + ## Dependances - [nsd](../nsd/README.md) diff --git a/seed/nsd-local/applicationservice.yml b/seed/nsd-local/applicationservice.yml index 985cc62..fb3a9bf 100644 --- a/seed/nsd-local/applicationservice.yml +++ b/seed/nsd-local/applicationservice.yml @@ -4,3 +4,4 @@ website: https://www.nlnetlabs.nl/projects/nsd/about/ service: true depends: - nsd +service: true diff --git a/seed/nsd/README.md b/seed/nsd/README.md index 0d1772c..9bb219e 100644 --- a/seed/nsd/README.md +++ b/seed/nsd/README.md @@ -11,6 +11,29 @@ NSD, an authoritative DNS name server. [For more informations](https://www.nlnetlabs.nl/projects/nsd/about/) +## Examples + +Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file. + +With minimum providers: + +``` +nsd: + applicationservice: nsd + zones_name: + - localdns +``` + +With all providers: + +``` +nsd: + applicationservice: nsd + zones_name: + - journald + - localdns +``` + ## Dependances - [base-fedora-37](../base-fedora-37/README.md) diff --git a/seed/postgresql/README.md b/seed/postgresql/README.md index 016ec6d..2bed86d 100644 --- a/seed/postgresql/README.md +++ b/seed/postgresql/README.md @@ -11,6 +11,31 @@ Postgresql, a database. [For more informations](https://www.postgresql.org) +## Examples + +Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file. + +With minimum providers: + +``` +postgresql: + applicationservice: postgresql + provider_zone: postgresql + zones_name: + - localdns +``` + +With all providers: + +``` +postgresql: + applicationservice: postgresql + provider_zone: postgresql + zones_name: + - journald + - localdns +``` + ## Dependances - [base-fedora-37](../base-fedora-37/README.md) diff --git a/seed/postgresql/applicationservice.yml b/seed/postgresql/applicationservice.yml index cc01205..134ea81 100644 --- a/seed/postgresql/applicationservice.yml +++ b/seed/postgresql/applicationservice.yml @@ -3,3 +3,4 @@ description: Postgresql, a database website: https://www.postgresql.org depends: - base-fedora-37 +service: true diff --git a/seed/unbound/README.md b/seed/unbound/README.md index 60b1d19..713903f 100644 --- a/seed/unbound/README.md +++ b/seed/unbound/README.md @@ -11,6 +11,32 @@ Unbound, a validating, recursive, caching DNS resolver. [For more informations](https://www.nlnetlabs.nl/projects/unbound/about/) +## Examples + +Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file. + +With minimum providers: + +``` +unbound: + applicationservice: unbound + provider_zone: externaldns + zones_name: + - localdns +``` + +With all providers: + +``` +unbound: + applicationservice: unbound + provider_zone: externaldns + zones_name: + - journald + - externaldns + - localdns +``` + ## Dependances - [dns-external](../dns-external/README.md)