ci: add GitHub Pages deployment workflow for docs site Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
403 B
YAML
16 lines
403 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "mikrotik-portal.fullname" . }}-api
|
|
labels:
|
|
{{- include "mikrotik-portal.apiLabels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.api.service.type }}
|
|
ports:
|
|
- port: {{ .Values.api.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "mikrotik-portal.apiSelectorLabels" . | nindent 4 }}
|