Initial commit: Neon Vortex application with Helm chart

This commit is contained in:
Neon Vortex
2025-11-21 19:51:50 -05:00
commit ce0f57c738
37 changed files with 2673 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "neon-vortex.serviceAccountName" . }}
labels:
{{- include "neon-vortex.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}