feat: Add an optional Redis component to the Higress helm package (#1973)

This commit is contained in:
littlejian
2025-04-01 09:29:46 +08:00
committed by GitHub
parent 5d99c7d80a
commit d58b66df8f
11 changed files with 313 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "redis.name" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "redis.labels" . | nindent 4 }}
spec:
type: {{ .Values.redis.service.type }}
ports:
- port: {{ .Values.redis.service.port }}
targetPort: 6379
protocol: TCP
selector:
{{- include "redis.selectorLabels" . | nindent 4 }}