From 38a1c4d35494e6d88f7ad9fa7a8ac58771a6e982 Mon Sep 17 00:00:00 2001 From: Austin Orth Date: Mon, 28 Mar 2022 16:09:38 -0400 Subject: [PATCH] Remove readiness probes Readiness probes are unnecessary as of yet for this application. Signed-off-by: Austin Orth --- charts/pagerbot/Chart.yaml | 2 +- charts/pagerbot/templates/deployment.yaml | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/charts/pagerbot/Chart.yaml b/charts/pagerbot/Chart.yaml index 222b803..d12c631 100644 --- a/charts/pagerbot/Chart.yaml +++ b/charts/pagerbot/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: pagerbot description: A bot that updates Slack usergroups based on PagerDuty schedules. type: application -version: 0.1.3 +version: 0.1.4 appVersion: "v1.0.0-beta3" diff --git a/charts/pagerbot/templates/deployment.yaml b/charts/pagerbot/templates/deployment.yaml index 978d4e7..cbb231f 100644 --- a/charts/pagerbot/templates/deployment.yaml +++ b/charts/pagerbot/templates/deployment.yaml @@ -26,18 +26,6 @@ spec: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: http - containerPort: 80 - protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }}