-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update liveness checks and debug ports
Closes #111
- Loading branch information
Daniel Swärd
committed
May 2, 2023
1 parent
5a5ece1
commit 81eccf1
Showing
8 changed files
with
69 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{- include "ocis.appNames" (dict "scope" . "appName" "appNameAudit" "appNameSuffix" "") -}} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .appName }} | ||
namespace: {{ template "ocis.namespace" . }} | ||
labels: | ||
app: {{ .appName }} | ||
ocis-metrics: enabled | ||
{{- include "ocis.labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
app: {{ .appName }} | ||
ports: | ||
- name: metrics-debug | ||
port: 9229 | ||
protocol: TCP |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{- if .Values.features.emailNotifications.enabled }} | ||
{{- include "ocis.appNames" (dict "scope" . "appName" "appNameNotifications" "appNameSuffix" "") -}} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .appName }} | ||
namespace: {{ template "ocis.namespace" . }} | ||
labels: | ||
app: {{ .appName }} | ||
ocis-metrics: enabled | ||
{{- include "ocis.labels" . | nindent 4 }} | ||
spec: | ||
selector: | ||
app: {{ .appName }} | ||
ports: | ||
- name: metrics-debug | ||
port: 9174 | ||
protocol: TCP | ||
{{- end }} |