Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-23 23:12:00 +00:00
parent 15dd72f47f
commit 58672d48d6
13 changed files with 43 additions and 47 deletions

View File

@ -6,6 +6,7 @@
## [splunk-4.0.0](https://github.com/truecharts/charts/compare/splunk-3.0.10...splunk-4.0.0) (2023-07-31) ## [splunk-4.0.0](https://github.com/truecharts/charts/compare/splunk-3.0.10...splunk-4.0.0) (2023-07-31)
### Feat ### Feat
@ -96,4 +97,3 @@
### Chore ### Chore
- update helm general non-major - update helm general non-major

View File

@ -1,9 +0,0 @@
## [stun-turn-server-3.0.7](https://github.com/truecharts/charts/compare/stun-turn-server-3.0.6...stun-turn-server-3.0.7) (2023-11-21)
### Feat
- Move to Stable ([#15078](https://github.com/truecharts/charts/issues/15078))

View File

@ -4,6 +4,15 @@
## [stun-turn-server-3.0.8](https://github.com/truecharts/charts/compare/stun-turn-server-3.0.7...stun-turn-server-3.0.8) (2023-11-23)
### Fix
- fix variables ([#15297](https://github.com/truecharts/charts/issues/15297))
## [stun-turn-server-3.0.7](https://github.com/truecharts/charts/compare/stun-turn-server-3.0.6...stun-turn-server-3.0.7) (2023-11-21) ## [stun-turn-server-3.0.7](https://github.com/truecharts/charts/compare/stun-turn-server-3.0.6...stun-turn-server-3.0.7) (2023-11-21)
### Feat ### Feat

View File

@ -22,6 +22,5 @@ maintainers:
name: stun-turn-server name: stun-turn-server
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server - https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server
- https://hub.docker.com/r/ich777/stun-turn-server
type: application type: application
version: 3.0.7 version: 3.0.8

View File

@ -5,7 +5,7 @@
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE. TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported. However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/) For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** **This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**

View File

@ -0,0 +1,9 @@
## [stun-turn-server-3.0.8](https://github.com/truecharts/charts/compare/stun-turn-server-3.0.7...stun-turn-server-3.0.8) (2023-11-23)
### Fix
- fix variables ([#15297](https://github.com/truecharts/charts/issues/15297))

View File

@ -55,7 +55,7 @@ workload:
EXTRA_PARAMS: "" EXTRA_PARAMS: ""
LISTENING_IP: 0.0.0.0 LISTENING_IP: 0.0.0.0
MAX_BPS: "0" MAX_BPS: "0"
PORT: "5349" PORT: "{{ .Values.service.main.ports.main.port }}"
PRIVKEY_FILE: privkey.pem PRIVKEY_FILE: privkey.pem
REALM: "" REALM: ""
SECRET: "" SECRET: ""

View File

@ -157,129 +157,117 @@ questions:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: PORT
label: "PORT"
description: "If you change this variable you have to create two new port forwardings with the corresponding ports one for TCP and one for UDP."
schema:
type: string
default: "5349"
- variable: SECRET - variable: SECRET
label: "SECRET" label: "Secret"
description: "Create your own secret and enter it here or leave empty and the server creats a secret that is stored into secret.txt in the main directory of the container (generate it for example in a linux terminal with the command openssl rand -hex 32 without quotes)." description: "Create your own secret and enter it here or leave empty and the server creats a secret that is stored into secret.txt in the main directory of the container (generate it for example in a linux terminal with the command openssl rand -hex 32 without quotes)."
schema: schema:
type: string type: string
default: "" default: ""
- variable: REALM - variable: REALM
label: "REALM" label: "Realm"
description: "Your hostname (eg example.org without quotes)." description: "Your hostname (eg example.org without quotes)."
schema: schema:
type: string type: string
default: "" default: ""
- variable: CERT_FILE - variable: CERT_FILE
label: "CERT_FILE" label: "Certificate File"
description: "Name of the certification file (leave empty if the server should create one or replace it with your own)." description: "Name of the certification file (leave empty if the server should create one or replace it with your own)."
schema: schema:
type: string type: string
default: "cert.pem" default: "cert.pem"
- variable: PRIVKEY_FILE - variable: PRIVKEY_FILE
label: "PRIVKEY_FILE" label: "Private Key File"
description: "Name of the private key file (leave empty if the server should create one or replace it with your own)." description: "Name of the private key file (leave empty if the server should create one or replace it with your own)."
schema: schema:
type: string type: string
default: "privkey.pem" default: "privkey.pem"
- variable: DH_FILE - variable: DH_FILE
label: "DH_FILE" label: "DiffieHellman Key File"
description: "Name of the DiffieHellman key file (leave empty if the server should create one or replace it with your own - also plase look under the Show more settings tab if you want to generate a bigger or smaller key default is 2048)." description: "Name of the DiffieHellman key file (leave empty if the server should create one or replace it with your own - also plase look under the Show more settings tab if you want to generate a bigger or smaller key default is 2048)."
schema: schema:
type: string type: string
default: "dhparam.pem" default: "dhparam.pem"
- variable: DISPLAY_SECRETS - variable: DISPLAY_SECRETS
label: "DISPLAY_SECRETS" label: "Display Secrets"
description: "Display your secrets in the log (set to true or leave empty to disable it)." description: "Display your secrets in the log (set to true or leave empty to disable it)."
schema: schema:
type: string type: string
default: "true" default: "true"
- variable: CA_COUNTRY - variable: CA_COUNTRY
label: "CA_COUNTRY" label: "Certificate Country Code"
description: "Country code for your certificate if the server should create one (two letters eg US without quotes - also plase look under the Show more settings tab there are more settings for generating your certificate)." description: "Country code for your certificate if the server should create one (two letters eg US without quotes - also plase look under the Show more settings tab there are more settings for generating your certificate)."
schema: schema:
type: string type: string
default: "" default: ""
- variable: EXTRA_PARAMS - variable: EXTRA_PARAMS
label: "EXTRA_PARAMS" label: "Extra Parameters"
description: "Here you can enter your Extra Startup Parameters if needed (you can get a full list of commands from here httpsgithub.comcoturncoturnwikiturnserver)" description: "Here you can enter your Extra Startup Parameters if needed (you can get a full list of commands from here httpsgithub.comcoturncoturnwikiturnserver)"
schema: schema:
type: string type: string
default: "" default: ""
- variable: TOTAL_QUOTA - variable: TOTAL_QUOTA
label: "TOTAL_QUOTA" label: "Total Quota"
description: "Total allocations quota global limit on concurrent allocations (only change if you know what you are doing)." description: "Total allocations quota global limit on concurrent allocations (only change if you know what you are doing)."
schema: schema:
type: string type: string
default: "100" default: "100"
- variable: MAX_BPS - variable: MAX_BPS
label: "MAX_BPS" label: "Maximum BPS"
description: "Max bytes-per-second bandwidth a TURN session is allowed to handle (input and output network streams are treated separately). Anything above that limit will be dropped or temporary suppressed - within the available buffer limits (only change if you know what you are doing)." description: "Max bytes-per-second bandwidth a TURN session is allowed to handle (input and output network streams are treated separately). Anything above that limit will be dropped or temporary suppressed - within the available buffer limits (only change if you know what you are doing)."
schema: schema:
type: string type: string
default: "0" default: "0"
- variable: CIPHER_LIST - variable: CIPHER_LIST
label: "CIPHER_LIST" label: "Cipher List"
description: "Allowed OpenSSL cipher list for TLSDTLS connections (only change if you know what you are doing)." description: "Allowed OpenSSL cipher list for TLSDTLS connections (only change if you know what you are doing)."
schema: schema:
type: string type: string
default: "ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384" default: "ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384"
- variable: CERT_LENGTH - variable: CERT_LENGTH
label: "CERT_LENGTH" label: "Certificate Length"
description: "Enter your preferred key length (the higher the value the longer it takes to generate the certificate)." description: "Enter your preferred key length (the higher the value the longer it takes to generate the certificate)."
schema: schema:
type: string type: string
default: "2048" default: "2048"
- variable: CERT_VALID_DAYS - variable: CERT_VALID_DAYS
label: "CERT_VALID_DAYS" label: "Certificate Expiration Length"
description: "Specify how long that the certificate should be valid in days." description: "Specify how long that the certificate should be valid in days."
schema: schema:
type: string type: string
default: "3650" default: "3650"
- variable: CA_STATE_PROV - variable: CA_STATE_PROV
label: "CA_STATE_PROV" label: "Certificate State/Province"
description: "Specify your state or province." description: "Specify your state or province."
schema: schema:
type: string type: string
default: "" default: ""
- variable: CA_LOCALITY - variable: CA_LOCALITY
label: "CA_LOCALITY" label: "Certificate Lcality"
description: "Specify your locality." description: "Specify your locality."
schema: schema:
type: string type: string
default: "" default: ""
- variable: CA_ORGANIZATION - variable: CA_ORGANIZATION
label: "CA_ORGANIZATION" label: "Certificate Organization"
description: "Specify your organiszation." description: "Specify your organization."
schema: schema:
type: string type: string
default: "" default: ""
- variable: DH_LENGTH - variable: DH_LENGTH
label: "DH_LENGTH" label: "Key Length"
description: "Enter your preferred key length (the higher the value the longer it takes to generate the key)." description: "Enter your preferred key length (the higher the value the longer it takes to generate the key)."
schema: schema:
type: string type: string
default: "2048" default: "2048"
- variable: CLI_PASSWORD - variable: CLI_PASSWORD
label: "CLI_PASSWORD" label: "CLI Password"
description: "Enter your CLI password or leave empty if you want that the server creates a random one (please note that you have to manually enable the console with the --cli-port PORT - PORT stands for your preferred port - in the Extra Startup Parameters and create the corresponding port)." description: "Enter your CLI password or leave empty if you want that the server creates a random one (please note that you have to manually enable the console with the --cli-port PORT - PORT stands for your preferred port - in the Extra Startup Parameters and create the corresponding port)."
schema: schema:
type: string type: string
default: "" default: ""
- variable: LISTENING_IP
label: "LISTENING_IP"
description: "Specify the listening port (only change if you know what you are doing)."
schema:
type: string
default: "0.0.0.0"
- variable: DATA_PERM - variable: DATA_PERM
label: "DATA_PERM" label: "Data Permissions"
description: "Container Variable DATAPERM" description: "Container Data Permissions"
schema: schema:
type: string type: string
default: "770" default: "770"