21 lines
502 B
YAML
21 lines
502 B
YAML
|
|
{{- if .Values.api.enabled }}
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: {{ include "osint-dashboard.fullname" . }}-api
|
||
|
|
namespace: {{ .Values.namespace }}
|
||
|
|
labels:
|
||
|
|
{{- include "osint-dashboard.labels" . | nindent 4 }}
|
||
|
|
app.kubernetes.io/component: api
|
||
|
|
spec:
|
||
|
|
type: ClusterIP
|
||
|
|
ports:
|
||
|
|
- port: 8000
|
||
|
|
targetPort: 8000
|
||
|
|
protocol: TCP
|
||
|
|
name: http
|
||
|
|
selector:
|
||
|
|
{{- include "osint-dashboard.selectorLabels" . | nindent 4 }}
|
||
|
|
app.kubernetes.io/component: api
|
||
|
|
{{- end }}
|