mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-01 21:10:13 +00:00
Add Helm chart tooling, CI, and release packaging
This commit is contained in:
parent
d79b8e8883
commit
d15ad1d0b4
25 changed files with 1299 additions and 5 deletions
12
deploy/helm/pulse/templates/agent-serviceaccount.yaml
Normal file
12
deploy/helm/pulse/templates/agent-serviceaccount.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{{- if and .Values.agent.enabled .Values.agent.serviceAccount.create }}
|
||||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: {{ default (printf "%s-agent" (include "pulse.fullname" .)) .Values.agent.serviceAccount.name }}
|
||||
labels:
|
||||
{{- include "pulse.labels" . | nindent 4 }}
|
||||
{{- with .Values.agent.serviceAccount.annotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue