fix(docs): Update internal dns generator and fix some 404 links (#2212)
* fix(docs): Update internal dns generator * update some links * one more
This commit is contained in:
@@ -23,4 +23,4 @@ Here we will go over a basic install of Plex, to showcase how you can install a
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -23,7 +23,7 @@ The process popup disapears, it might take a few minutes to actually deploy your
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
##### Notes
|
||||
|
||||
|
||||
@@ -66,4 +66,4 @@ Ofcoarse only enter the version number in the GUI or CLI, not the name
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -17,7 +17,7 @@ Please be aware that automatically setting ownership/permissions, does mean it o
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
##### Additional Documentation
|
||||
|
||||
@@ -11,22 +11,22 @@ Instead we need to use their internal(!) domain name. Please beware: this name i
|
||||
The format for internal domain name for the main service is explained bellow.
|
||||
Please replace `$NAME` with the name you gave your App when installing and `$APP` with the name the app has on the catalog where is needed.
|
||||
|
||||
**If your app has the _same_ name as in the catalog, the format is as follows.**
|
||||
**If your app name __contains__ the name of the app as in the catalog, the format is as follows.**
|
||||
|
||||
- `$NAME.ix-$NAME.svc.cluster.local`
|
||||
|
||||
**If your app has _different_ name than in the catalog, the format is as follows**
|
||||
**If your app name __does NOT contain__ the name of the app as in the catalog, the format is as follows.**
|
||||
|
||||
- `$NAME-$APP.ix-$NAME.svc.cluster.local`
|
||||
|
||||
|
||||
If you need to reach a different service (which is not often the case!), you need a slightly different format, where `$SVCNAME` is the name of the service you want to reach:
|
||||
|
||||
**If your app has the _same_ name as in the catalog, the format is as follows.**
|
||||
**If your app name __contains__ the name of the app as in the catalog, the format is as follows.**
|
||||
|
||||
- `$NAME-$SVCNAME.ix-$NAME.svc.cluster.local`
|
||||
|
||||
**If your app has _different_ name than in the catalog, the format is as follows**
|
||||
**If your app name __does NOT contain__ the name of the app as in the catalog, the format is as follows.**
|
||||
|
||||
- `$NAME-$APPNAME-$SVCNAME.ix-$NAME.svc.cluster.local`
|
||||
|
||||
@@ -35,16 +35,16 @@ If you need to reach a different service (which is not often the case!), you nee
|
||||
<link href="https://truecharts.org/_static/form.css" type="text/css" rel="stylesheet" />
|
||||
<FORM id="frameform"><BR>
|
||||
<div class="form">
|
||||
<div class="subtitle">Generate Internal DNS Name:</div>
|
||||
<div class="subtitle">Generate Internal DNS Name</div>
|
||||
<div class="input-container ic1">
|
||||
<input required id="name" class="input" type="text" placeholder=" " />
|
||||
<div class="cut cut-short-name"></div>
|
||||
<label for="name" class="placeholder">Name</label>
|
||||
<label for="name" class="placeholder">Name (e.g. my-plex-app)</label>
|
||||
</div>
|
||||
<div class="input-container ic2">
|
||||
<input required id="app" class="input" type="text" placeholder=" " />
|
||||
<div class="cut cut-short-app"></div>
|
||||
<label for="app" class="placeholder">App</label>
|
||||
<label for="app" class="placeholder">App (e.g. plex)</label>
|
||||
</div>
|
||||
<div class="input-container ic2">
|
||||
<input id="service" class="input" type="text" placeholder=" " />
|
||||
@@ -67,7 +67,7 @@ function submit(event) {
|
||||
|
||||
|
||||
var svcname = ""
|
||||
if (name.value == app.value) {
|
||||
if (name.value.includes(app.value)) {
|
||||
svcname = name.value ;
|
||||
} else {
|
||||
svcname = name.value + "-" + app.value ;
|
||||
@@ -75,7 +75,8 @@ function submit(event) {
|
||||
if (service.value) {
|
||||
svcname = svcname + "-" + service.value ;
|
||||
}
|
||||
let svcdns = svcname + "." + "ix-" + name.value + ".svc.cluster.local" ;
|
||||
let svcdns = svcname + ".ix-" + name.value + ".svc.cluster.local" ;
|
||||
|
||||
alert ("Service DNS Name: " + svcdns);
|
||||
console.log(svcdns)
|
||||
return false;
|
||||
@@ -84,16 +85,22 @@ function submit(event) {
|
||||
|
||||
##### Example
|
||||
|
||||
To reach an app named "sabnzbd" (same name as the catalog app name) within Sonarr, we can use the following internal domain name:
|
||||
To reach an app named "my-sabnzbd-app" or "sabnzbd' (name contains the catalog app name) within Sonarr, we can use the following internal domain name:
|
||||
|
||||
- `sabnzbd.ix-sabnzbd.svc.cluster.local` or
|
||||
- `sabnzbd.ix-sabnzbd`
|
||||
|
||||
To reach an app named "sab" (name does NOT contain catalog app name) within Sonarr, we can use the following internal domain name:
|
||||
|
||||
- `sab-sabnzbd.ix-sab.svc.cluster.local` or
|
||||
- `sab-sabnzbd.ix-sab`
|
||||
|
||||
|
||||
<a href="https://truecharts.org/_static/img/linking/linking-example-sonarrsabnzbd.png"><img src="https://truecharts.org/_static/img/linking/linking-example-sonarrsabnzbd.png" width="100%"/></a>
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
##### Additional Documentation
|
||||
|
||||
|
||||
@@ -53,4 +53,4 @@ For clearity, it's advicable to use the same Authenticator for all domain names.
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -4,4 +4,4 @@ Within TrueCharts our aim is to make it as easy as possible to secure your Apps.
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -17,7 +17,7 @@ We currently require Traefik to be installed before you enable ingress on your A
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
### Notes
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
##### Additional Documentation
|
||||
|
||||
@@ -35,6 +35,6 @@ Our docker-compose solution works almost like using it on the host, but without
|
||||
|
||||
#### Video Guide
|
||||
|
||||

|
||||

|
||||
|
||||
##### Additional Documentation
|
||||
|
||||
Reference in New Issue
Block a user