From 9bfa72a3926ccb9cd91ec268ff3f69682bb35ac2 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 --- stable/unifi/Chart.yaml | 2 +- stable/unifi/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/unifi/Chart.yaml b/stable/unifi/Chart.yaml index a937169ced..345480d2a3 100644 --- a/stable/unifi/Chart.yaml +++ b/stable/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/stable/unifi/templates/deployment.yaml b/stable/unifi/templates/deployment.yaml index ab433ef275..3b253e2fb0 100644 --- a/stable/unifi/templates/deployment.yaml +++ b/stable/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 }}"