mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
Do not create SysLog when unifiedService is disabled (#887)
This commit is contained in:
parent
4be85faf42
commit
7135a2e90d
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: 6.0.45
|
appVersion: 6.0.45
|
||||||
description: Ubiquiti Network's Unifi Controller
|
description: Ubiquiti Network's Unifi Controller
|
||||||
name: unifi
|
name: unifi
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
keywords:
|
keywords:
|
||||||
- ubiquiti
|
- ubiquiti
|
||||||
- unifi
|
- unifi
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# unifi
|
# unifi
|
||||||
|
|
||||||
![Version: 2.0.1](https://img.shields.io/badge/Version-2.0.1-informational?style=flat-square) ![AppVersion: 6.0.45](https://img.shields.io/badge/AppVersion-6.0.45-informational?style=flat-square)
|
![Version: 2.0.2](https://img.shields.io/badge/Version-2.0.2-informational?style=flat-square) ![AppVersion: 6.0.45](https://img.shields.io/badge/AppVersion-6.0.45-informational?style=flat-square)
|
||||||
|
|
||||||
Ubiquiti Network's Unifi Controller
|
Ubiquiti Network's Unifi Controller
|
||||||
|
|
||||||
@ -216,6 +216,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [2.0.2]
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Separate syslog service is only created when enabled and unifiedService is disabled.
|
||||||
|
|
||||||
### [2.0.1]
|
### [2.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@ -244,6 +250,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.0.2]: #2.0.2
|
||||||
[2.0.1]: #2.0.1
|
[2.0.1]: #2.0.1
|
||||||
[1.5.3]: #1.5.3
|
[1.5.3]: #1.5.3
|
||||||
|
|
||||||
|
@ -143,3 +143,4 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
|||||||
{{ template "custom.support" . }}
|
{{ template "custom.support" . }}
|
||||||
|
|
||||||
{{ template "helm-docs.versionFooter" . }}
|
{{ template "helm-docs.versionFooter" . }}
|
||||||
|
{{ "" }}
|
||||||
|
@ -9,6 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [2.0.2]
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- Separate syslog service is only created when enabled and unifiedService is disabled.
|
||||||
|
|
||||||
### [2.0.1]
|
### [2.0.1]
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@ -37,6 +43,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
[2.0.2]: #2.0.2
|
||||||
[2.0.1]: #2.0.1
|
[2.0.1]: #2.0.1
|
||||||
[1.5.3]: #1.5.3
|
[1.5.3]: #1.5.3
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{{ if not .Values.unifiedService.enabled }}
|
{{ if and (not (.Values.unifiedService.enabled)) .Values.syslogService.enabled }}
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
|
Loading…
Reference in New Issue
Block a user