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 <lserven@gmail.com>

* stable/unifi: bump patch version

Signed-off-by: Lucas Serven <lserven@gmail.com>
This commit is contained in:
Lucas Servén Marín 2018-11-12 01:30:56 +01:00 committed by k8s-ci-robot
parent 74f2472e7d
commit a4cbdc6177
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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 }}"