WIP: can deploy?

This commit is contained in:
2026-07-29 00:30:37 -04:00
parent 8f5c499ee2
commit 4a6732798a
31 changed files with 803 additions and 739 deletions
+21
View File
@@ -0,0 +1,21 @@
{{- define "system.service.component" }}
---
apiVersion: v1
kind: Service
metadata:
name: {{ .component.name }}-service
labels:
{{ include "helper.metaLabels" . | indent 4 }}
spec:
type: {{ .component.service.type }}
selector:
app: {{ .component.name }}
ports:
{{- range .component.service.ports }}
- protocol: {{ .protocol }}
port: {{ .port }}
targetPort: {{ .targetPort }}
name: {{ .name }}
{{- end }}
{{- end }}