feat: add slack bot service annotations to argocd-notifications
This commit is contained in:
parent
9b80bd95e4
commit
cb926a8fac
3 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@ appVersion: 0.7.0
|
|||
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
||||
name: argocd-notifications
|
||||
type: application
|
||||
version: 1.0.7
|
||||
version: 1.0.8
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
keywords:
|
||||
|
|
|
@ -3,6 +3,10 @@ apiVersion: v1
|
|||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "argocd-notifications.name" . }}-bot
|
||||
{{- if .Values.bots.slack.service.annotations }}
|
||||
annotations:
|
||||
{{- toYaml .Values.bots.slack.service.annotations | nindent 4 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
ports:
|
||||
- name: server
|
||||
|
|
|
@ -194,6 +194,7 @@ bots:
|
|||
imagePullSecrets: []
|
||||
|
||||
service:
|
||||
annotations: {}
|
||||
type: LoadBalancer
|
||||
|
||||
serviceAccount:
|
||||
|
|
Loading…
Reference in a new issue