-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: exposing worker health endpoint (#49)
* feat(EE): exposing worker health endpoint * fix(EE): setting ubuntu version for lint workflow * feat: add worker host to helm upgrade in workflow * feat: use repo variable for worker host * chore: adding worker host to list of hosts * chore: changed worker path from health to regex * feat: added multiwoven worker service * chore: fixed indentation * fix: ports format in worker service * fix: removed trailing spaces in values * fix: wrong ingress service name for worker * fix: only expose the health endpoint for the worker * fix: regex for path instead of hardcoded health path * fix: revert to specific path definition * fix: reverting path defintion for worker service in ingress
- Loading branch information
1 parent
3afad04
commit ff61eb5
Showing
6 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
charts/multiwoven/templates/multiwoven-worker-service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ include "chart.fullname" . }}-worker | ||
namespace: {{ .Values.kubernetesNamespace }} | ||
|
||
labels: | ||
io.kompose.service: {{ include "chart.fullname" . }}-worker | ||
{{- include "chart.labels" . | nindent 4 }} | ||
annotations: | ||
kompose.cmd: kompose convert | ||
kompose.version: 1.32.0 (HEAD) | ||
spec: | ||
type: {{ .Values.multiwovenWorker.type }} | ||
selector: | ||
io.kompose.service: {{ include "chart.fullname" . }}-worker | ||
{{- include "chart.selectorLabels" . | nindent 4 }} | ||
ports: | ||
{{- .Values.multiwovenWorker.ports | toYaml | nindent 2 -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters