File tree Expand file tree Collapse file tree 4 files changed +46
-3
lines changed
charts/node-exporter-textfiles Expand file tree Collapse file tree 4 files changed +46
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Release Charts
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ release :
10
+ # Depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
11
+ # see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
12
+ permissions :
13
+ contents : write
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v2
18
+ with :
19
+ fetch-depth : 0
20
+
21
+ - name : Configure Git
22
+ run : |
23
+ git config user.name "$GITHUB_ACTOR"
24
+ git config user.email "[email protected] "
25
+
26
+ - name : Install Helm
27
+ uses : azure/setup-helm@v1
28
+ with :
29
+ version : v3.8.1
30
+
31
+ - name : Run chart-releaser
32
+
33
+ env :
34
+ CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ version: 0.1.0
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " v20220203-125335-155 "
24
+ appVersion : " v20220922-124518-926 "
Original file line number Diff line number Diff line change 1
1
# kubernetes
2
2
3
+ ## Recommendation
4
+
5
+ It is recommended to use [ the ` node-exporter-textfiles ` Helm chart] ( ../charts/node-exporter-textfiles/ ) to install and update the node_exporter textfile container.
6
+
7
+ ## Info
8
+
3
9
This example DaemonSet runs the ` smartmon.sh ` and ` nvme_metrics.sh ` node_exporter textfile scripts.
4
10
The data is exported to ` /var/lib/node_exporter ` on the nodes.
Original file line number Diff line number Diff line change
1
+ # It is recommended to use the Helm chart see
2
+ # https://github.com/galexrt/container-node_exporter-textfiles#kubernetes
3
+ #
1
4
apiVersion : apps/v1
2
5
kind : DaemonSet
3
6
metadata :
26
29
operator : " Exists"
27
30
terminationGracePeriodSeconds : 5
28
31
containers :
29
- - image : quay.io/galexrt/node-exporter-textfiles:v20220203-125335-155
32
+ - image : quay.io/galexrt/node-exporter-textfiles:v20220922-124518-926
30
33
name : smartmon
31
34
env :
32
35
- name : INTERVAL
49
52
- mountPath : /var/lib/node_exporter
50
53
name : host-textfile
51
54
readOnly : false
52
- - image : quay.io/galexrt/node-exporter-textfiles:v20220203-125335-155
55
+ - image : quay.io/galexrt/node-exporter-textfiles:v20220922-124518-926
53
56
name : nvmemetrics
54
57
env :
55
58
- name : INTERVAL
You can’t perform that action at this time.
0 commit comments