mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-25 16:55:08 +00:00
14 lines
433 B
YAML
14 lines
433 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "erpnext.fullname" . }}-redis-queue
|
|
labels:
|
|
{{- include "erpnext.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.redisQueueService.type }}
|
|
ports:
|
|
- port: {{ .Values.redisQueueService.port }}
|
|
targetPort: 6379
|
|
selector:
|
|
app.kubernetes.io/name: {{ include "erpnext.name" . }}-redis-queue
|
|
app.kubernetes.io/instance: {{ .Release.Name }}-redis-queue
|