Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
1a0ae87789
commit
a0f87de159
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="dashdot-0.0.3"></a>
|
||||
### [dashdot-0.0.3](https://github.com/truecharts/apps/compare/dashdot-0.0.2...dashdot-0.0.3) (2022-06-15)
|
||||
|
||||
#### Fix
|
||||
|
||||
* add cap and memory mapping ([#2897](https://github.com/truecharts/apps/issues/2897))
|
||||
|
||||
|
||||
|
||||
<a name="dashdot-0.0.2"></a>
|
||||
### [dashdot-0.0.2](https://github.com/truecharts/apps/compare/dashdot-0.0.1...dashdot-0.0.2) (2022-06-15)
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.0.9
|
||||
digest: sha256:ecc7cc7417a00bc40309e68f23ad56ec383550afcbe45fce648a9d9771712609
|
||||
generated: "2022-06-15T07:30:51.914973008Z"
|
||||
generated: "2022-06-15T10:10:06.165835847Z"
|
|
@ -19,7 +19,7 @@ name: dashdot
|
|||
sources:
|
||||
- https://github.com/MauriceNino/dashdot
|
||||
- https://hub.docker.com/r/mauricenino/dashdot
|
||||
version: 0.0.2
|
||||
version: 0.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -9,8 +9,7 @@ securityContext:
|
|||
capabilities:
|
||||
add:
|
||||
- SYS_PTRACE
|
||||
# Test without it first
|
||||
# - SYS_ADMIN
|
||||
- SYS_RAWIO
|
||||
|
||||
podSecurityContext:
|
||||
runAsUser: 0
|
||||
|
@ -42,3 +41,9 @@ persistence:
|
|||
hostPath: "/proc/1/ns/net"
|
||||
mountPath: "/mnt/proc/1/ns/net"
|
||||
readOnly: true
|
||||
mem:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
hostPath: "/dev/mem"
|
||||
mountPath: "/dev/mem"
|
||||
readOnly: true
|
|
@ -183,8 +183,14 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "os,cpu,ram,network"
|
||||
- variable: DASHDOT_ACCEPT_OOKLA_EULA
|
||||
label: "DASHDOT_ACCEPT_OOKLA_EULA"
|
||||
description: "Use the newer and more accurate speedtest tool from Ookla, instead of the old speedtest-cli for your speedtests. "
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: oswidgetsettings
|
||||
label: "OS Widget"
|
||||
label: "OS Widget Settings"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
@ -215,7 +221,7 @@ questions:
|
|||
type: string
|
||||
default: "300"
|
||||
- variable: cpuwidgetsettings
|
||||
label: "CPU Widget"
|
||||
label: "CPU Widget Settings"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
@ -258,7 +264,7 @@ questions:
|
|||
type: string
|
||||
default: "1000"
|
||||
- variable: ramwidgetsettings
|
||||
label: "RAM Widget"
|
||||
label: "RAM Widget Settings"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
@ -295,7 +301,7 @@ questions:
|
|||
type: string
|
||||
default: "1000"
|
||||
- variable: netwidgetsettings
|
||||
label: "Network Widget"
|
||||
label: "Network Widget Settings"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
Loading…
Reference in New Issue