Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/krateo-sse-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: >-
Krateo SSE proxy. Polls ClickHouse and pushes new K8s events to connected
browsers via Server-Sent Events.
type: application
version: 0.1.7
version: 0.1.8
appVersion: "1.1.2"
home: https://krateo.io
icon: https://github.com/krateoplatformops/krateo/blob/main/docs/media/logo.svg
Expand Down
3 changes: 3 additions & 0 deletions charts/krateo-sse-proxy/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ spec:
port: {{ .Values.service.port }}
targetPort: 8080
protocol: TCP
{{- if .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
6 changes: 6 additions & 0 deletions charts/krateo-sse-proxy/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"nodePort": {
"type": "integer",
"minimum": 30000,
"maximum": 32767,
"description": "Explicit NodePort (only honored when service.type=NodePort). Set by the installer to pin a deterministic, host-mappable port."
}
}
},
Expand Down
Loading