mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
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:
parent
74f2472e7d
commit
a4cbdc6177
@ -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
|
||||
|
@ -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 }}"
|
||||
|
Loading…
Reference in New Issue
Block a user