Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if .Values.service.http_nodePort }}
nodePort: {{ .Values.service.http_nodePort }}
{{- end }}
- port: {{ .Values.service.grpc_port }}
targetPort: grpc
protocol: TCP
name: grpc
{{- if .Values.service.grpc_nodePort }}
nodePort: {{ .Values.service.grpc_nodePort }}
{{- end }}
selector:
{{- include "openobserve.selectorLabels" . | nindent 4 }}
2 changes: 2 additions & 0 deletions charts/openobserve-standalone/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ service:
type: ClusterIP
# type: LoadBalancer
http_port: 5080
# http_nodePort: 30580
grpc_port: 5081
# grpc_nodePort: 30581
annotations: {}

certIssuer:
Expand Down