Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-05-02 08:07:59 +00:00
parent a99b877ff5
commit 0fa8ebc4d7
11 changed files with 55 additions and 7 deletions

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="netdata-0.0.4"></a>
### [netdata-0.0.4](https://github.com/truecharts/apps/compare/netdata-0.0.3...netdata-0.0.4) (2022-05-02)
#### Chore
* add pod/namespace/node env's ([#2600](https://github.com/truecharts/apps/issues/2600))
<a name="netdata-0.0.3"></a>
### [netdata-0.0.3](https://github.com/truecharts/apps/compare/netdata-0.0.2...netdata-0.0.3) (2022-05-01)

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org
version: 9.3.2
digest: sha256:4514044d0d416a02c0029081a25943395114bcb29df51a2ede27d4257f71d412
generated: "2022-05-02T02:40:48.655267799Z"
generated: "2022-05-02T08:01:14.684535489Z"

View File

@@ -18,7 +18,7 @@ maintainers:
name: netdata
sources:
- https://github.com/netdata
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- utilities

View File

@@ -25,9 +25,9 @@ rbac:
- ""
resources:
- "pods"
- "services"
- "configmaps"
- "secrets"
# - "services" # used by sd
# - "configmaps" # used by sd
# - "secrets" # used by sd
- "nodes"
- "nodes/metrics"
verbs:
@@ -40,6 +40,22 @@ rbac:
verbs:
- "get"
envValueFrom:
MY_NODE_NAME:
fieldRef:
fieldPath: spec.nodeName
MY_POD_NAMESPACE:
fieldRef:
fieldPath: metadata.namespace
MY_POD_NAME:
fieldRef:
fieldPath: metadata.name
secret:
NETDATA_CLAIM_URL: ""
NETDATA_CLAIM_TOKEN: ""
NETDATA_CLAIM_ROOMS: ""
service:
main:
ports:
@@ -106,9 +122,9 @@ initContainers:
command: ["/bin/sh", "-c"]
args:
- >
echo "Creating config file...";
export configfile=/etc/netdata/netdata.conf;
if [ ! -f $configfile ]; then
echo "Creating config file...";
echo '[global]' > $configfile;
echo ' memory mode = dbengine' >> $configfile;
echo ' dbengine multihost disk space = 4096' >> $configfile;

View File

@@ -168,7 +168,30 @@ questions:
label: "Value"
schema:
type: string
# Docker specific env
- variable: secret
group: "Container Configuration"
label: "Image Secrets"
schema:
additional_attrs: true
type: dict
attrs:
- variable: NETDATA_CLAIM_URL
label: "NETDATA_CLAIM_URL"
schema:
type: string
default: "https://app.netdata.cloud"
- variable: NETDATA_CLAIM_TOKEN
label: "NETDATA_CLAIM_TOKEN"
schema:
type: string
private: true
default: ""
- variable: NETDATA_CLAIM_ROOMS
label: "NETDATA_CLAIM_ROOMS"
schema:
type: string
private: true
default: ""
- variable: TZ
label: "Timezone"
group: "Container Configuration"