From a4cbdc6177858d1e3b948133e822a6f144515778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 12 Nov 2018 01:30:56 +0100 Subject: [PATCH] stable/unifi/templates/deployment.yaml: fix probes (#9180) * stable/unifi/templates/deployment.yaml: fix probes The `livenessProbe` and `readinessProbe` are incorrectly defined. The `initialDelaySeconds` field should not be nested withing the `httpGet` field. Signed-off-by: Lucas Serven * stable/unifi: bump patch version Signed-off-by: Lucas Serven --- charts/unifi/Chart.yaml | 2 +- charts/unifi/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/unifi/Chart.yaml b/charts/unifi/Chart.yaml index a937169c..345480d2 100644 --- a/charts/unifi/Chart.yaml +++ b/charts/unifi/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 5.9.29 description: Ubiquiti Network's Unifi Controller name: unifi -version: 0.2.0 +version: 0.2.1 keywords: - ubiquiti - unifi diff --git a/charts/unifi/templates/deployment.yaml b/charts/unifi/templates/deployment.yaml index ab433ef2..3b253e2f 100644 --- a/charts/unifi/templates/deployment.yaml +++ b/charts/unifi/templates/deployment.yaml @@ -41,13 +41,13 @@ spec: path: /status port: https-gui scheme: HTTPS - initialDelaySeconds: 30 + initialDelaySeconds: 30 readinessProbe: httpGet: path: /status port: https-gui scheme: HTTPS - initialDelaySeconds: 15 + initialDelaySeconds: 15 env: - name: TZ value: "{{ .Values.timezone }}"