diff --git a/charts/jitsi-monitor/Chart.yaml b/charts/jitsi-monitor/Chart.yaml index 0414cf8..5e6b564 100644 --- a/charts/jitsi-monitor/Chart.yaml +++ b/charts/jitsi-monitor/Chart.yaml @@ -3,7 +3,7 @@ name: jitsi-monitor description: Monitors the health of Jitsi Meet instances and bridges type: application -version: 0.1.3 +version: 0.1.4 # App metadata appVersion: "v0.1.3" diff --git a/charts/jitsi-monitor/templates/cronjob.yaml b/charts/jitsi-monitor/templates/cronjob.yaml index 3526964..3bcc01a 100644 --- a/charts/jitsi-monitor/templates/cronjob.yaml +++ b/charts/jitsi-monitor/templates/cronjob.yaml @@ -14,6 +14,10 @@ spec: metadata: labels: app: {{ .Release.Name }}-monitor + {{- if .Values.podAnnotations }} + annotations: + {{- .Values.podAnnotations | toYaml | nindent 12 }} + {{- end }} spec: restartPolicy: OnFailure containers: @@ -34,10 +38,6 @@ apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-monitor - {{- if .Values.service.annotations }} - annotations: - {{- .Values.service.annotations | toYaml | nindent 4 }} - {{- end }} spec: selector: diff --git a/charts/jitsi-monitor/values.yaml b/charts/jitsi-monitor/values.yaml index 4971bcb..3942cea 100644 --- a/charts/jitsi-monitor/values.yaml +++ b/charts/jitsi-monitor/values.yaml @@ -15,4 +15,5 @@ cronJob: service: type: ClusterIP port: 8000 - annotations: {} \ No newline at end of file + +podAnnotations: {} \ No newline at end of file