rancher-partner-charts/charts/instana/instana-agent/templates/serviceaccount.yaml

16 lines
473 B
YAML
Raw Normal View History

2022-10-26 15:48:27 +00:00
{{- if .Values.serviceAccount.create }}
---
2021-06-24 01:55:05 +00:00
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "instana-agent.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "instana-agent.commonLabels" . | nindent 4 }}
{{- if .Values.serviceAccount.annotations }}
annotations:
{{- if .Values.serviceAccount.annotations }}
{{- toYaml .Values.serviceAccount.annotations | nindent 4}}
{{- end }}
{{- end }}
2022-10-26 15:48:27 +00:00
{{- end }}