We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6324282 + db92266 commit 5238184Copy full SHA for 5238184
3 files changed
proxysql/Chart.yaml
@@ -2,4 +2,4 @@
2
apiVersion: v1
3
name: proxysql
4
description: ProxySQL Configuration
5
-version: 0.1.11
+version: 0.2.0
proxysql/templates/daemonset.yaml
@@ -17,6 +17,11 @@ spec:
17
metadata:
18
labels:
19
app: {{ .Values.name }}
20
+ annotations:
21
+ checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
22
+ {{- range $key, $value := .Values.daemonset.template.annotations }}
23
+ {{ $key }}: {{ $value }}
24
+ {{- end }}
25
spec:
26
containers:
27
- name: {{ .Values.name }}
proxysql/values.yaml
@@ -9,6 +9,8 @@ service:
9
type: "NodePort"
10
externalTrafficPolicy: "Local"
11
daemonset:
12
+ template:
13
+ annotations: {}
14
15
image: proxysql/proxysql:latest
16
imagePullPolicy: "IfNotPresent"
0 commit comments