mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[calibre] additionalPorts -> additionalServices (#771)
Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
parent
433a1a5ea6
commit
05a59bd54d
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 -}}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user