Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
bb99c8222d
commit
154fcd422e
|
@ -1,10 +0,0 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="shlink-0.0.1"></a>
|
||||
### shlink-0.0.1 (2021-12-27)
|
||||
|
||||
#### Feat
|
||||
|
||||
* Add shlink ([#1616](https://github.com/truecharts/apps/issues/1616))
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="shlink-0.0.2"></a>
|
||||
### [shlink-0.0.2](https://github.com/truecharts/apps/compare/shlink-0.0.1...shlink-0.0.2) (2021-12-28)
|
||||
|
||||
#### Fix
|
||||
|
||||
* protocol is `HTTP` ([#1619](https://github.com/truecharts/apps/issues/1619))
|
||||
|
||||
|
||||
|
||||
<a name="shlink-0.0.1"></a>
|
||||
### shlink-0.0.1 (2021-12-27)
|
||||
|
||||
#### Feat
|
||||
|
||||
* Add shlink ([#1616](https://github.com/truecharts/apps/issues/1616))
|
|
@ -9,4 +9,4 @@ dependencies:
|
|||
repository: https://truecharts.org/
|
||||
version: 1.0.42
|
||||
digest: sha256:eddc56f74d3cb825cd9946db6c5badf2cc1e72628b22a4e22a65738f0bc50907
|
||||
generated: "2021-12-27T12:42:00.033954298Z"
|
||||
generated: "2021-12-28T11:52:14.697848618Z"
|
|
@ -28,7 +28,7 @@ name: shlink
|
|||
sources:
|
||||
- https://github.com/shlinkio/shlink
|
||||
type: application
|
||||
version: 0.0.1
|
||||
version: 0.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
|
@ -40,6 +40,5 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `10153` | |
|
||||
| service.main.ports.main.targetPort | int | `10153` | |
|
||||
| service.main.protocol | string | `"HTTPS"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
|
@ -13,7 +13,6 @@ podSecurityContext:
|
|||
|
||||
service:
|
||||
main:
|
||||
protocol: HTTPS
|
||||
ports:
|
||||
main:
|
||||
targetPort: 10153
|
|
@ -25,30 +25,10 @@ groups:
|
|||
description: "Addon Configuration"
|
||||
- name: "Advanced"
|
||||
description: "Advanced Configuration"
|
||||
portals:
|
||||
web_portal:
|
||||
protocols:
|
||||
- "$kubernetes-resource_configmap_portal_protocol"
|
||||
host:
|
||||
- "$kubernetes-resource_configmap_portal_host"
|
||||
ports:
|
||||
- "$kubernetes-resource_configmap_portal_port"
|
||||
portals: {}
|
||||
|
||||
questions:
|
||||
- variable: portal
|
||||
group: "Container Image"
|
||||
label: "Configure Portal Button"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable"
|
||||
description: "enable the portal button"
|
||||
schema:
|
||||
hidden: true
|
||||
editable: false
|
||||
type: boolean
|
||||
default: true
|
||||
|
||||
- variable: global
|
||||
label: "global settings"
|
||||
group: "Controller"
|
||||
|
@ -207,6 +187,12 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: IS_HTTPS_ENABLED
|
||||
label: "Served over HTTPS"
|
||||
description: "Tells if Shlink is served with https or not"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -350,6 +336,13 @@ questions:
|
|||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: port
|
||||
label: "Port"
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 10153
|
||||
required: true
|
||||
- variable: advanced
|
||||
label: "Show Advanced settings"
|
||||
schema:
|
||||
|
@ -366,7 +359,7 @@ questions:
|
|||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTPS"
|
||||
default: "HTTP"
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
|
@ -389,13 +382,6 @@ questions:
|
|||
schema:
|
||||
type: int
|
||||
default: 10153
|
||||
- variable: port
|
||||
label: "Port"
|
||||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 10153
|
||||
required: true
|
||||
|
||||
- variable: serviceexpert
|
||||
group: "Networking and Services"
|
Loading…
Reference in New Issue