Files
chart/community/mumble/app_versions.json
2023-12-03 13:46:38 +00:00

375 lines
20 KiB
JSON

{
"1.0.15": {
"healthy": true,
"supported": true,
"healthy_error": null,
"location": "/__w/charts/charts/community/mumble/1.0.15",
"last_update": "2023-12-03 13:45:06",
"required_features": [
"normalize/ixVolume",
"definitions/certificate"
],
"human_version": "v1.4.230_1.0.15",
"version": "1.0.15",
"chart_metadata": {
"name": "mumble",
"description": "Mumble is a free, open source, low latency, high quality voice chat application.",
"annotations": {
"title": "Mumble"
},
"type": "application",
"version": "1.0.15",
"apiVersion": "v2",
"appVersion": "v1.4.230",
"kubeVersion": ">=1.16.0-0",
"maintainers": [
{
"name": "truenas",
"url": "https://www.truenas.com/",
"email": "dev@ixsystems.com"
}
],
"dependencies": [
{
"name": "common",
"repository": "file://../../../common",
"version": "1.2.3"
}
],
"home": "https://www.mumble.info/",
"icon": "https://media.sys.truenas.net/apps/mumble/icons/icon.svg",
"sources": [
"https://github.com/mumble-voip/mumble-docker",
"https://github.com/truenas/charts/tree/master/community/mumble",
"https://www.mumble.info/"
],
"keywords": [
"voice"
]
},
"app_metadata": {
"runAsContext": [
{
"userName": "mumble",
"groupName": "mumble",
"gid": 1000,
"uid": 1000,
"description": "Mumble runs as non-root user."
}
],
"capabilities": [],
"hostMounts": []
},
"schema": {
"groups": [
{
"name": "Mumble Configuration",
"description": "Configure Mumble"
},
{
"name": "Network Configuration",
"description": "Configure Network for Mumble"
},
{
"name": "Storage Configuration",
"description": "Configure Storage for Mumble"
},
{
"name": "Resources Configuration",
"description": "Configure Resources for Mumble"
}
],
"questions": [
{
"variable": "mumbleConfig",
"label": "",
"group": "Mumble Configuration",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "serverPassword",
"label": "Server Password",
"description": "The password for the Mumble Server.",
"schema": {
"type": "string",
"empty": false,
"required": true,
"private": true
}
},
{
"variable": "superUserPassword",
"label": "Super User Password",
"description": "The password for the Mumble Super User.",
"schema": {
"type": "string",
"empty": false,
"required": true,
"private": true
}
},
{
"variable": "iceSecretRead",
"label": "Ice Secret Read",
"description": "The Ice Secret for Read Operations.",
"schema": {
"type": "string",
"empty": false,
"required": true,
"private": true
}
},
{
"variable": "iceSecretWrite",
"label": "Ice Secret Write",
"description": "The Ice Secret for Write Operations.",
"schema": {
"type": "string",
"empty": false,
"required": true,
"private": true
}
},
{
"variable": "users",
"label": "Users",
"description": "The maximum number of users for the Mumble Server.",
"schema": {
"type": "int",
"default": 100,
"required": true
}
},
{
"variable": "welcomeText",
"label": "Welcome Text",
"description": "The welcome text for the Mumble Server.",
"schema": {
"type": "string",
"default": "Welcome to Mumble!",
"required": true
}
},
{
"variable": "additionalEnvs",
"label": "Additional Environment Variables",
"description": "Configure additional environment variables for Mumble.",
"schema": {
"type": "list",
"default": [],
"items": [
{
"variable": "env",
"label": "Environment Variable",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "name",
"label": "Name",
"schema": {
"type": "string",
"required": true
}
},
{
"variable": "value",
"label": "Value",
"schema": {
"type": "string",
"required": true
}
}
]
}
}
]
}
}
]
}
},
{
"variable": "mumbleNetwork",
"label": "",
"group": "Network Configuration",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "serverPort",
"label": "Server Port",
"description": "The port for the Mumble Server (UDP & TCP).",
"schema": {
"type": "int",
"default": 30018,
"min": 9000,
"max": 65535,
"required": true
}
},
{
"variable": "icePort",
"label": "Ice Port",
"description": "The port for the Ice.",
"schema": {
"type": "int",
"default": 30019,
"min": 9000,
"max": 65535,
"required": true
}
},
{
"variable": "certificateID",
"label": "Certificate",
"description": "The certificate to use for Mumble",
"schema": {
"type": "int",
"null": true,
"$ref": [
"definitions/certificate"
],
"enum": [
{
"value": null,
"description": "No Certificate"
}
],
"default": null
}
}
]
}
},
{
"variable": "mumbleStorage",
"label": "",
"group": "Storage Configuration",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "data",
"label": "Mumble Data Storage",
"description": "The path to store Mumble Data.",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "type",
"label": "Type",
"description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
"schema": {
"type": "string",
"required": true,
"immutable": true,
"default": "ixVolume",
"enum": [
{
"value": "hostPath",
"description": "Host Path (Path that already exists on the system)"
},
{
"value": "ixVolume",
"description": "ixVolume (Dataset created automatically by the system)"
}
]
}
},
{
"variable": "datasetName",
"label": "Dataset Name",
"schema": {
"type": "string",
"show_if": [
[
"type",
"=",
"ixVolume"
]
],
"required": true,
"hidden": true,
"immutable": true,
"default": "data",
"$ref": [
"normalize/ixVolume"
]
}
},
{
"variable": "hostPath",
"label": "Host Path",
"schema": {
"type": "hostpath",
"show_if": [
[
"type",
"=",
"hostPath"
]
],
"immutable": true,
"required": true
}
}
]
}
}
]
}
},
{
"variable": "resources",
"label": "Resources Configuration",
"group": "Resources Configuration",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "limits",
"label": "Limits",
"schema": {
"type": "dict",
"attrs": [
{
"variable": "cpu",
"label": "CPU",
"description": "CPU limit for Mumble.",
"schema": {
"type": "string",
"max_length": 6,
"valid_chars": "^(0\\.[1-9]|[1-9][0-9]*)(\\.[0-9]|m?)$",
"valid_chars_error": "Valid CPU limit formats are</br>\n- Plain Integer - eg. 1</br>\n- Float - eg. 0.5</br>\n- Milicpu - eg. 500m\n",
"default": "4000m",
"required": true
}
},
{
"variable": "memory",
"label": "Memory",
"description": "Memory limit for Mumble.",
"schema": {
"type": "string",
"max_length": 12,
"valid_chars": "^[1-9][0-9]*([EPTGMK]i?|e[0-9]+)?$",
"valid_chars_error": "Valid Memory limit formats are</br>\n- Suffixed with E/P/T/G/M/K - eg. 1G</br>\n- Suffixed with Ei/Pi/Ti/Gi/Mi/Ki - eg. 1Gi</br>\n- Plain Integer in bytes - eg. 1024</br>\n- Exponent - eg. 134e6\n",
"default": "8Gi",
"required": true
}
}
]
}
}
]
}
}
]
},
"app_readme": "<h1>Mumble</h1>\n<p><a href=\"https://www.mumble.info/\">Mumble</a> is an Open Source, Low Latency, High Quality Voice Chat Home Downloads Documentation Blog Contribute About</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Mumble</code> directories.\nAfterward, the <code>Mumble</code> container will run as a <strong>non</strong>-root user (<code>1000</code>, Cannot change).</p>\n</blockquote>\n<p>You can change the server configuration by adding additional environment variables.\nPrefix the configuration variable with <code>MUMBLE_CONFIG_</code> and it will be added to the configuration file.\nView the <a href=\"https://wiki.mumble.info/wiki/Murmur.ini\">Mumble Configuration File</a> for more information.</p>\n<p>For example you can set <code>autobanAttempts</code> like this:</p>\n<ul>\n<li>Name: <code>MUMBLE_CONFIG_autobanAttempts</code></li>\n<li>Value: <code>5</code></li>\n</ul>",
"detailed_readme": "<h1>Mumble</h1>\n<p><a href=\"https://www.mumble.info/\">Mumble</a> is an Open Source, Low Latency, High Quality Voice Chat Home Downloads Documentation Blog Contribute About</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Mumble</code> directories.\nAfterward, the <code>Mumble</code> container will run as a <strong>non</strong>-root user (<code>1000</code>, Cannot change).</p>\n</blockquote>\n<p>You can change the server configuration by adding additional environment variables.\nPrefix the configuration variable with <code>MUMBLE_CONFIG_</code> and it will be added to the configuration file.\nView the <a href=\"https://wiki.mumble.info/wiki/Murmur.ini\">Mumble Configuration File</a> for more information.</p>\n<p>For example you can set <code>autobanAttempts</code> like this:</p>\n<ul>\n<li>Name: <code>MUMBLE_CONFIG_autobanAttempts</code></li>\n<li>Value: <code>5</code></li>\n</ul>",
"changelog": null
}
}