mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-26 00:49:01 +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
|
appVersion: 5.9.29
|
||||||
description: Ubiquiti Network's Unifi Controller
|
description: Ubiquiti Network's Unifi Controller
|
||||||
name: unifi
|
name: unifi
|
||||||
version: 0.2.0
|
version: 0.2.1
|
||||||
keywords:
|
keywords:
|
||||||
- ubiquiti
|
- ubiquiti
|
||||||
- unifi
|
- unifi
|
||||||
|
@ -41,13 +41,13 @@ spec:
|
|||||||
path: /status
|
path: /status
|
||||||
port: https-gui
|
port: https-gui
|
||||||
scheme: HTTPS
|
scheme: HTTPS
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /status
|
path: /status
|
||||||
port: https-gui
|
port: https-gui
|
||||||
scheme: HTTPS
|
scheme: HTTPS
|
||||||
initialDelaySeconds: 15
|
initialDelaySeconds: 15
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
value: "{{ .Values.timezone }}"
|
value: "{{ .Values.timezone }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user