From 05a59bd54d5edf1a226b6a6b680db5ac4b749480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Thu, 8 Apr 2021 11:28:20 +0200 Subject: [PATCH] [calibre] additionalPorts -> additionalServices (#771) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs --- charts/stable/calibre/Chart.yaml | 2 +- charts/stable/calibre/README.md | 20 +++++++++++++++---- .../stable/calibre/README_CHANGELOG.md.gotmpl | 9 ++++++++- charts/stable/calibre/values.yaml | 12 ++++++++--- 4 files changed, 34 insertions(+), 9 deletions(-) diff --git a/charts/stable/calibre/Chart.yaml b/charts/stable/calibre/Chart.yaml index 90e47081..b4cb264d 100644 --- a/charts/stable/calibre/Chart.yaml +++ b/charts/stable/calibre/Chart.yaml @@ -4,7 +4,7 @@ apiVersion: v2 appVersion: 5.14.0 description: Calibre is a powerful and easy to use e-book manager. name: calibre -version: 3.1.0 +version: 3.1.1 kubeVersion: ">=1.16.0-0" keywords: - calibre diff --git a/charts/stable/calibre/README.md b/charts/stable/calibre/README.md index 437333c8..2c0f2c58 100644 --- a/charts/stable/calibre/README.md +++ b/charts/stable/calibre/README.md @@ -1,6 +1,6 @@ # calibre -![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![AppVersion: 5.14.0](https://img.shields.io/badge/AppVersion-5.14.0-informational?style=flat-square) +![Version: 3.1.1](https://img.shields.io/badge/Version-3.1.1-informational?style=flat-square) ![AppVersion: 5.14.0](https://img.shields.io/badge/AppVersion-5.14.0-informational?style=flat-square) Calibre is a powerful and easy to use e-book manager. @@ -89,8 +89,13 @@ N/A | ingress.enabled | bool | `false` | | | persistence.config.emptyDir.enabled | bool | `false` | | | persistence.config.enabled | bool | `false` | | -| service.additionalPorts[0].name | string | `"calibre-server"` | | -| service.additionalPorts[0].port | int | `8081` | | +| service.additionalServices[0].enabled | bool | `false` | | +| service.additionalServices[0].nameSuffix | string | `"webserver"` | | +| service.additionalServices[0].port.name | string | `"webserver"` | | +| service.additionalServices[0].port.port | int | `8081` | | +| service.additionalServices[0].port.protocol | string | `"TCP"` | | +| service.additionalServices[0].port.targetPort | int | `8081` | | +| service.additionalServices[0].type | string | `"ClusterIP"` | | | service.port | object | `{"name":"gui","port":8080}` | The default port is 8080 | | strategy.type | string | `"Recreate"` | | @@ -100,6 +105,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). +### [3.1.1] + +#### Fixed + +- Change `additionalPorts` to `additionalServices` + ### [3.0.0] #### Added @@ -122,7 +133,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial version -[3.0.0]: #2.0.0 +[3.1.1]: #3.1.1 +[3.0.0]: #3.0.0 [1.0.0]: #1.0.0 ## Support diff --git a/charts/stable/calibre/README_CHANGELOG.md.gotmpl b/charts/stable/calibre/README_CHANGELOG.md.gotmpl index 6f592c5f..fcb6dc04 100644 --- a/charts/stable/calibre/README_CHANGELOG.md.gotmpl +++ b/charts/stable/calibre/README_CHANGELOG.md.gotmpl @@ -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). +### [3.1.1] + +#### Fixed + +- Change `additionalPorts` to `additionalServices` + ### [3.0.0] #### Added @@ -32,6 +38,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial version -[3.0.0]: #2.0.0 +[3.1.1]: #3.1.1 +[3.0.0]: #3.0.0 [1.0.0]: #1.0.0 {{- end -}} diff --git a/charts/stable/calibre/values.yaml b/charts/stable/calibre/values.yaml index 14312f44..b3a80b10 100644 --- a/charts/stable/calibre/values.yaml +++ b/charts/stable/calibre/values.yaml @@ -37,9 +37,15 @@ service: port: port: 8080 name: gui - additionalPorts: - - name: calibre-server - port: 8081 + additionalServices: + - enabled: false + nameSuffix: webserver + type: ClusterIP + port: + port: 8081 + name: webserver + protocol: TCP + targetPort: 8081 ingress: enabled: false