Skip to content

Commit

Permalink
feat: expose management service (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliazur authored Jul 17, 2024
1 parent cb42daa commit eb774c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions charts/kestra/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if .Values.service.management.enabled }}
- port: {{ .Values.service.management.port }}
targetPort: management
protocol: TCP
name: management
{{ end }}
selector:
{{- include "kestra.selectorsLabels" (merge (dict "Component" $selector) $) | nindent 6 }}
3 changes: 3 additions & 0 deletions charts/kestra/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ service:
port: 8080
loadBalancerIP: ""
annotations: {}
management:
enabled: false
port: 8081


### Ingress
Expand Down

0 comments on commit eb774c2

Please sign in to comment.