File tree 4 files changed +29
-5
lines changed
4 files changed +29
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: atuin
3
3
description : A Helm chart for Atuin, the shell sync tool
4
4
maintainers :
5
5
- name : Ellie Huxtable
6
- email : ellie@elliehuxtable.com
6
+ email : ellie@atuin.sh
7
7
url : https://ellie.wtf
8
8
9
9
# A chart can be either an 'application' or a 'library' chart.
@@ -19,10 +19,10 @@ type: application
19
19
# This is the chart version. This version number should be incremented each time you make changes
20
20
# to the chart and its templates, including the app version.
21
21
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22
- version : 0.2.1
22
+ version : 0.3.0
23
23
24
24
# This is the version number of the application being deployed. This version number should be
25
25
# incremented each time you make changes to the application. Versions are not expected to
26
26
# follow Semantic Versioning. They should reflect the version the application is using.
27
27
# It is recommended to use it with quotes.
28
- appVersion : " 17.1 .0"
28
+ appVersion : " 17.2 .0"
Original file line number Diff line number Diff line change 59
59
secretKeyRef :
60
60
name : {{ .Values.postgresql.uri.secretName }}
61
61
key : {{ .Values.postgresql.uri.secretKey }}
62
+ - name : ATUIN_TLS__ENABLE
63
+ value : " false"
64
+ - name : ATUIN_TLS__CERT_PATH
65
+ value : " "
66
+ - name : ATUIN_TLS__PKEY_PATH
67
+ value : " "
62
68
63
69
{{- if .Values.atuin.hooks.enabled }}
64
70
- name : ATUIN_REGISTER_WEBHOOK_URL
@@ -69,11 +75,11 @@ spec:
69
75
70
76
{{- if .Values.atuin.metrics.enabled }}
71
77
- name : ATUIN_METRICS__ENABLE
72
- value : true
78
+ value : " true"
73
79
- name : ATUIN_METRICS__HOST
74
80
value : {{ .Values.atuin.metrics.host }}
75
81
- name : ATUIN_METRICS__PORT
76
- value : {{ .Values.atuin.metrics.port}}
82
+ value : " {{ .Values.atuin.metrics.port}}"
77
83
{{- end }}
78
84
ports :
79
85
- name : http
Original file line number Diff line number Diff line change
1
+ {{- if .Values.serviceMonitor.enabled }}
2
+ apiVersion : monitoring.coreos.com/v1
3
+ kind : ServiceMonitor
4
+ metadata :
5
+ name : atuin
6
+ spec :
7
+ endpoints :
8
+ - interval : 60s
9
+ path : /metrics
10
+ port : metrics
11
+ selector :
12
+ matchLabels :
13
+ app.kubernetes.io/instance : atuin
14
+ app.kubernetes.io/name : atuin
15
+ {{- end}}
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ postgresql:
22
22
secretName : atuin
23
23
secretKey : dbUri
24
24
25
+ serviceMonitor :
26
+ enabled : false
27
+
25
28
atuin :
26
29
# Setup Atuin webhook notifications
27
30
# Currently only register webhooks are supported, and are sent in the slack format
You can’t perform that action at this time.
0 commit comments