mirror of
https://github.com/alibaba/higress.git
synced 2026-02-24 12:40:48 +08:00
Co-authored-by: xujingfeng <jingfeng.xjf@alibaba-inc.com> Co-authored-by: 澄潭 <zty98751@alibaba-inc.com>
16 lines
425 B
YAML
16 lines
425 B
YAML
{{- if .Values.global.enablePluginServer }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "pluginServer.name" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "pluginServer.labels" . | nindent 4 }}
|
|
spec:
|
|
ports:
|
|
- protocol: TCP
|
|
port: {{ .Values.pluginServer.service.port }}
|
|
targetPort: 8080
|
|
selector:
|
|
{{- include "pluginServer.selectorLabels" . | nindent 4 }}
|
|
{{- end }} |