mirror of
https://github.com/harness/drone.git
synced 2025-05-31 11:43:15 +00:00
Added helm deployment so you can quickly deploy it to your Kubernetes cluster. The deployment consists of: - Service - Deployment - PVC - Ingress - ServiceAccount
12 lines
319 B
YAML
12 lines
319 B
YAML
{{- if .Values.serviceAccount.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "gitness.serviceAccountName" . }}
|
|
labels:
|
|
{{- include "gitness.labels" . | nindent 4 }}
|
|
{{- with .Values.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }} |