Skip to content

Commit d4b57bd

Browse files
authored
Merge pull request #1 from atuinsh/update
chore(release): upgrade to Atuin v17.2.0
2 parents 8d7534a + 391ff86 commit d4b57bd

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

charts/atuin/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: atuin
33
description: A Helm chart for Atuin, the shell sync tool
44
maintainers:
55
- name: Ellie Huxtable
6-
email: ellie@elliehuxtable.com
6+
email: ellie@atuin.sh
77
url: https://ellie.wtf
88

99
# A chart can be either an 'application' or a 'library' chart.
@@ -19,10 +19,10 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.2.1
22+
version: 0.3.0
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to
2626
# follow Semantic Versioning. They should reflect the version the application is using.
2727
# It is recommended to use it with quotes.
28-
appVersion: "17.1.0"
28+
appVersion: "17.2.0"

charts/atuin/templates/deployment.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ spec:
5959
secretKeyRef:
6060
name: {{ .Values.postgresql.uri.secretName }}
6161
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: ""
6268

6369
{{- if .Values.atuin.hooks.enabled }}
6470
- name: ATUIN_REGISTER_WEBHOOK_URL
@@ -69,11 +75,11 @@ spec:
6975

7076
{{- if .Values.atuin.metrics.enabled }}
7177
- name: ATUIN_METRICS__ENABLE
72-
value: true
78+
value: "true"
7379
- name: ATUIN_METRICS__HOST
7480
value: {{ .Values.atuin.metrics.host }}
7581
- name: ATUIN_METRICS__PORT
76-
value: {{ .Values.atuin.metrics.port}}
82+
value: "{{ .Values.atuin.metrics.port}}"
7783
{{- end }}
7884
ports:
7985
- name: http
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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}}

charts/atuin/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ postgresql:
2222
secretName: atuin
2323
secretKey: dbUri
2424

25+
serviceMonitor:
26+
enabled: false
27+
2528
atuin:
2629
# Setup Atuin webhook notifications
2730
# Currently only register webhooks are supported, and are sent in the slack format

0 commit comments

Comments
 (0)