mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +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
|
||||
description: Ubiquiti Network's Unifi Controller
|
||||
name: unifi
|
||||
version: 2.0.1
|
||||
version: 2.0.2
|
||||
keywords:
|
||||
- ubiquiti
|
||||
- unifi
|
||||
|
@ -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
|
||||
|
||||
|
@ -143,3 +143,4 @@ helm install {{ template "chart.name" . }} {{ template "custom.helm.path" . }} -
|
||||
{{ template "custom.support" . }}
|
||||
|
||||
{{ 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).
|
||||
|
||||
### [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 -}}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{ if not .Values.unifiedService.enabled }}
|
||||
{{ if and (not (.Values.unifiedService.enabled)) .Values.syslogService.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
|
Loading…
Reference in New Issue
Block a user