Do not create SysLog when unifiedService is disabled (#887)

This commit is contained in:
Aleksandr Beshkenadze 2021-05-07 21:14:22 +03:00 committed by GitHub
parent 4be85faf42
commit 7135a2e90d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 3 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 6.0.45
description: Ubiquiti Network's Unifi Controller
name: unifi
version: 2.0.1
version: 2.0.2
keywords:
- ubiquiti
- unifi

View File

@ -1,6 +1,6 @@
# 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
@ -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).
### [2.0.2]
#### Fixed
- Separate syslog service is only created when enabled and unifiedService is disabled.
### [2.0.1]
#### Added
@ -244,6 +250,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- N/A
[2.0.2]: #2.0.2
[2.0.1]: #2.0.1
[1.5.3]: #1.5.3

View File

@ -143,3 +143,4 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
{{ template "custom.support" . }}
{{ template "helm-docs.versionFooter" . }}
{{ "" }}

View File

@ -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).
### [2.0.2]
#### Fixed
- Separate syslog service is only created when enabled and unifiedService is disabled.
### [2.0.1]
#### Added
@ -37,6 +43,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- N/A
[2.0.2]: #2.0.2
[2.0.1]: #2.0.1
[1.5.3]: #1.5.3
{{- end -}}

View File

@ -1,4 +1,4 @@
{{ if not .Values.unifiedService.enabled }}
{{ if and (not (.Values.unifiedService.enabled)) .Values.syslogService.enabled }}
apiVersion: v1
kind: Service
metadata: