fix(alertmanager-matrix): remove probes

This commit is contained in:
WrenIX 2023-07-20 22:50:12 +02:00
parent 6aae86427f
commit be6f1b5231
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 1 additions and 24 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
name: alertmanager-matrix name: alertmanager-matrix
description: Service for managing and receiving Alertmanager alerts on Matrix description: Service for managing and receiving Alertmanager alerts on Matrix
type: application type: application
version: 0.1.1 version: 0.1.2
appVersion: "latest" appVersion: "latest"
keywords: keywords:
- matrix - matrix

View file

@ -69,14 +69,6 @@ spec:
- name: http - name: http
containerPort: {{ .Values.service.port }} containerPort: {{ .Values.service.port }}
protocol: TCP protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
volumeMounts: volumeMounts:

View file

@ -1,15 +0,0 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "alertmanager-matrix.fullname" . }}-test-connection"
labels:
{{- include "alertmanager-matrix.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "alertmanager-matrix.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never