Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
6db62c72af
commit
f23cf6d83a
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="sogo-4.0.10"></a>
|
||||
### [sogo-4.0.10](https://github.com/truecharts/apps/compare/sogo-4.0.9...sogo-4.0.10) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
- name: postgresql
|
||||
repository: https://truecharts.org/
|
||||
version: 3.0.3
|
||||
version: 3.0.4
|
||||
- name: memcached
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 5.15.2
|
||||
digest: sha256:08a2dc445e5284e5f88bb46c390d904951919cf17894faa602f638acfa636054
|
||||
generated: "2021-09-29T08:22:15.660098412Z"
|
||||
version: 5.15.3
|
||||
digest: sha256:31ea20ec333f850afa9cf3a2496456944683769564b80fd997d8321ca3f56830
|
||||
generated: "2021-09-29T16:05:00.010027846Z"
|
|
@ -3,15 +3,15 @@ appVersion: "5.2.0"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
- condition: postgresql.enabled
|
||||
name: postgresql
|
||||
repository: https://truecharts.org/
|
||||
version: 3.0.3
|
||||
version: 3.0.4
|
||||
- condition: memcached.enabled
|
||||
name: memcached
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 5.15.2
|
||||
version: 5.15.3
|
||||
deprecated: false
|
||||
description: Groupware package
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/stable/sogo
|
||||
|
@ -27,4 +27,4 @@ name: sogo
|
|||
sources:
|
||||
- https://www.sogo.nu/
|
||||
type: application
|
||||
version: 4.0.8
|
||||
version: 4.0.10
|
|
@ -17,9 +17,9 @@ Kubernetes: `>=1.16.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://charts.bitnami.com/bitnami | memcached | 5.15.2 |
|
||||
| https://truecharts.org/ | postgresql | 3.0.3 |
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://charts.bitnami.com/bitnami | memcached | 5.15.3 |
|
||||
| https://truecharts.org/ | postgresql | 3.0.4 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -17,7 +17,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| initContainers | object | `{"init-postgresdb":{"command":["sh","-c","until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done"],"env":[{"name":"pghost","valueFrom":{"secretKeyRef":{"key":"plainhost","name":"dbcreds"}}}],"image":"{{ .Values.postgresqlImage.repository }}:{{ .Values.postgresqlImage.tag }}","imagePullPolicy":"IfNotPresent"}}` | initcontainers |
|
||||
| initContainers.init-postgresdb | object | `{"command":["sh","-c","until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done"],"env":[{"name":"pghost","valueFrom":{"secretKeyRef":{"key":"plainhost","name":"dbcreds"}}}],"image":"{{ .Values.postgresqlImage.repository }}:{{ .Values.postgresqlImage.tag }}","imagePullPolicy":"IfNotPresent"}` | wait for database before starting sogo |
|
||||
| memcached | object | `{"enabled":true}` | memcached dependency settings |
|
||||
| persistence | object | `{"data":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/data/conf/sogo/","size":"100Gi","type":"pvc"},"drafts":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/var/spool/sogo","size":"100Gi","type":"pvc"},"mimetmp":{"enabled":true,"mountPath":"/mimetmp","type":"emptyDir"},"varrun":{"enabled":false}}` | persistence settings |
|
||||
| persistence | object | `{"data":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/data/conf/sogo/","size":"100Gi","type":"pvc"},"drafts":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/var/spool/sogo","size":"100Gi","type":"pvc"},"mimetmp":{"enabled":true,"mountPath":"/mimetmp","type":"emptyDir"}}` | persistence settings |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| postgresql | object | `{"enabled":true,"existingSecret":"dbcreds","postgresqlDatabase":"sogo","postgresqlUsername":"sogo"}` | postgres dependency settings |
|
|
@ -932,18 +932,6 @@ questions:
|
|||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: varrun
|
||||
label: "varrun override"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: ""
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
- variable: data
|
||||
label: "App Data Storage"
|
||||
description: "Stores the Application Data."
|
||||
|
@ -2054,3 +2042,212 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: codeserver
|
||||
label: "Codeserver"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: git
|
||||
label: "Git Settings"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: deployKey
|
||||
description: "Raw SSH private key"
|
||||
label: "deployKey"
|
||||
schema:
|
||||
type: string
|
||||
- variable: deployKeyBase64
|
||||
description: "Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence"
|
||||
label: "deployKeyBase64"
|
||||
schema:
|
||||
type: string
|
||||
- variable: service
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: type
|
||||
label: "Service Type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
|
||||
schema:
|
||||
type: string
|
||||
default: "NodePort"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- value: "LoadBalancer"
|
||||
description: "LoadBalancer"
|
||||
- variable: loadBalancerIP
|
||||
label: "LoadBalancer IP"
|
||||
description: "LoadBalancerIP"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: externalIPs
|
||||
label: "External IP's"
|
||||
description: "External IP's"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: externalIP
|
||||
label: "External IP"
|
||||
schema:
|
||||
type: string
|
||||
- variable: ports
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: codeserver
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: nodePort
|
||||
description: "leave empty to disable"
|
||||
label: "nodePort"
|
||||
schema:
|
||||
type: int
|
||||
default: 36107
|
||||
- variable: envList
|
||||
label: "Codeserver environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
- variable: promtail
|
||||
label: "Promtail"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: loki
|
||||
label: "Loki URL"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: logs
|
||||
label: "Log Paths"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: path
|
||||
label: "Path"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: args
|
||||
label: "Promtail ecommand line arguments"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: arg
|
||||
label: "Arg"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: envList
|
||||
label: "Promtail environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
|
||||
|
||||
- variable: netshoot
|
||||
label: "Netshoot"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: envList
|
||||
label: "Netshoot environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
|
@ -59,8 +59,7 @@ persistence:
|
|||
enabled: true
|
||||
mountPath: "/mimetmp"
|
||||
type: emptyDir
|
||||
varrun:
|
||||
enabled: false
|
||||
|
||||
|
||||
# -- postgres dependency settings
|
||||
postgresql:
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="sogo-4.0.8"></a>
|
||||
### [sogo-4.0.8](https://github.com/truecharts/apps/compare/sogo-4.0.7...sogo-4.0.8) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update bitnami/postgresql:13.4.0 docker digest to 33c276d ([#1055](https://github.com/truecharts/apps/issues/1055))
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="airsonic-3.0.2"></a>
|
||||
### [airsonic-3.0.2](https://github.com/truecharts/apps/compare/airsonic-3.0.1...airsonic-3.0.2) (2021-09-28)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1046](https://github.com/truecharts/apps/issues/1046))
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
digest: sha256:2574f8d60c5c80bd4734ad033e1d6ce991b79c1419b98a3d78edfdbf0eed940e
|
||||
generated: "2021-09-28T06:35:42.274833756Z"
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="airsonic-3.0.4"></a>
|
||||
### [airsonic-3.0.4](https://github.com/truecharts/apps/compare/airsonic-3.0.3...airsonic-3.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:05:15.742913531Z"
|
|
@ -3,7 +3,7 @@ appVersion: "10.6.2"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
description: Airsonic is a Free and Open Source community driven media server
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/airsonic
|
||||
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-logo.png
|
||||
|
@ -19,4 +19,4 @@ sources:
|
|||
- https://github.com/airsonic/airsonic
|
||||
- https://github.com/linuxserver/docker-airsonic
|
||||
- https://github.com/k8s-at-home/charts/tree/master/charts/airsonic
|
||||
version: 3.0.2
|
||||
version: 3.0.4
|
|
@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -1,4 +0,0 @@
|
|||
|
||||
<a name="appdaemon-5.0.1"></a>
|
||||
### [appdaemon-5.0.1](https://github.com/truecharts/apps/compare/appdaemon-5.0.0...appdaemon-5.0.1) (2021-09-26)
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
digest: sha256:2574f8d60c5c80bd4734ad033e1d6ce991b79c1419b98a3d78edfdbf0eed940e
|
||||
generated: "2021-09-26T22:56:36.61496412Z"
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="appdaemon-5.0.3"></a>
|
||||
### [appdaemon-5.0.3](https://github.com/truecharts/apps/compare/appdaemon-5.0.2...appdaemon-5.0.3) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:05:25.006048868Z"
|
|
@ -3,7 +3,7 @@ appVersion: "4.1.0"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
deprecated: false
|
||||
description: AppDaemon is a loosely coupled, multithreaded, sandboxed python execution
|
||||
environment for writing automation apps for Home Assistant home automation software.
|
||||
|
@ -26,4 +26,4 @@ name: appdaemon
|
|||
sources:
|
||||
- https://github.com/AppDaemon/appdaemon
|
||||
type: application
|
||||
version: 5.0.1
|
||||
version: 5.0.3
|
|
@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
|
@ -24,6 +24,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| persistence.conf.mountPath | string | `"/conf"` | |
|
||||
| persistence.conf.size | string | `"100Gi"` | |
|
||||
| persistence.conf.type | string | `"pvc"` | |
|
||||
| persistence.varrun.enabled | bool | `true` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
|
@ -152,7 +152,7 @@ questions:
|
|||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
|
||||
# Docker specific env
|
||||
- variable: env
|
||||
group: "Container Configuration"
|
||||
label: "Image Environment"
|
||||
|
@ -166,6 +166,50 @@ questions:
|
|||
default: "Etc/UTC"
|
||||
$ref:
|
||||
- "definitions/timezone"
|
||||
- variable: HA_URL
|
||||
label: "HA URL"
|
||||
description: "Your HomeAssistant URL"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: TOKEN
|
||||
label: "HA Token"
|
||||
description: "Your HomeAssistant Token"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: DASH_URL
|
||||
label: "Dashboard URL"
|
||||
description: "URL of your appdaemon dashboard"
|
||||
schema:
|
||||
type: string
|
||||
default: "http://$HOSTNAME:5050"
|
||||
required: true
|
||||
- variable: LATITUDE
|
||||
label: "Latitude"
|
||||
description: "Latitude of your home assistant instance"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
valid_chars: '^[0-9]{1,}\.{1}[0-9]{1,}$'
|
||||
required: true
|
||||
- variable: LONGITUDE
|
||||
label: "Longitude"
|
||||
description: "Longitude of your home assistant instance"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
valid_chars: '^[0-9]{1,}\.{1}[0-9]{1,}$'
|
||||
required: true
|
||||
- variable: ELEVATION
|
||||
label: "Elevation"
|
||||
description: "Longitude of your home assistant instance"
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
required: true
|
||||
- variable: UMASK
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
|
@ -339,14 +383,14 @@ questions:
|
|||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 9117
|
||||
default: 5050
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: port
|
||||
label: "Container Port"
|
||||
schema:
|
||||
type: int
|
||||
default: 9117
|
||||
default: 51050
|
||||
editable: true
|
||||
required: true
|
||||
- variable: nodePort
|
||||
|
@ -356,7 +400,7 @@ questions:
|
|||
type: int
|
||||
min: 9000
|
||||
max: 65535
|
||||
default: 36009
|
||||
default: 36051
|
||||
|
||||
- variable: serviceexpert
|
||||
group: "Networking and Services"
|
||||
|
@ -539,11 +583,24 @@ questions:
|
|||
|
||||
- variable: persistence
|
||||
label: "Integrated Persistent Storage"
|
||||
description: "Integrated Persistent Storage"
|
||||
group: "Storage and Persistence"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: config
|
||||
- variable: varrun
|
||||
label: "varrun override for S6 Readonly Root"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: ""
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
- variable: conf
|
||||
label: "App Config Storage"
|
||||
description: "Stores the Application Configuration."
|
||||
schema:
|
||||
|
@ -574,44 +631,6 @@ questions:
|
|||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: "SCALE-ZFS"
|
||||
- variable: labelsList
|
||||
label: "Labels"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: labelItem
|
||||
label: "Label"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
- variable: annotationsList
|
||||
label: "Annotations"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: annotationItem
|
||||
label: "Label"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
- variable: setPermissions
|
||||
label: "Automatic Permissions"
|
||||
description: "Automatically set permissions on install"
|
||||
|
@ -658,7 +677,7 @@ questions:
|
|||
description: "Path inside the container the storage is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/config"
|
||||
default: "/conf"
|
||||
hidden: true
|
||||
- variable: medium
|
||||
label: "EmptyDir Medium"
|
||||
|
@ -854,165 +873,6 @@ questions:
|
|||
type: string
|
||||
default: "100Gi"
|
||||
|
||||
- variable: ingress
|
||||
label: ""
|
||||
group: "Ingress"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: main
|
||||
label: "Main Ingress"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable Ingress"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: hosts
|
||||
label: "Hosts"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: hostEntry
|
||||
label: "Host"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: host
|
||||
label: "HostName"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: paths
|
||||
label: "Paths"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: pathEntry
|
||||
label: "Host"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: path
|
||||
label: "path"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "/"
|
||||
- variable: pathType
|
||||
label: "pathType"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: tlsEntry
|
||||
label: "Host"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: hosts
|
||||
label: "Certificate Hosts"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: host
|
||||
label: "Host"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: scaleCert
|
||||
label: "Select TrueNAS SCALE Certificate"
|
||||
schema:
|
||||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
schema:
|
||||
type: string
|
||||
default: "websecure"
|
||||
required: true
|
||||
- variable: middlewares
|
||||
label: "Traefik Middlewares"
|
||||
description: "Add previously created Traefik Middlewares to this Ingress"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
|
||||
- variable: expert
|
||||
label: "Show Expert Configuration Options"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: labelsList
|
||||
label: "Labels"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: labelItem
|
||||
label: "Label"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
- variable: annotationsList
|
||||
label: "Annotations"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: annotationItem
|
||||
label: "Label"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
|
||||
- variable: ingressList
|
||||
label: "Add Manual Custom Ingresses"
|
||||
group: "Ingress"
|
||||
|
@ -1198,7 +1058,7 @@ questions:
|
|||
label: "ReadOnly Root Filesystem"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
default: true
|
||||
- variable: allowPrivilegeEscalation
|
||||
label: "Allow Privilege Escalation"
|
||||
schema:
|
||||
|
@ -1208,7 +1068,7 @@ questions:
|
|||
label: "runAsNonRoot"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
default: false
|
||||
|
||||
- variable: podSecurityContext
|
||||
group: "Security and Permissions"
|
||||
|
@ -1221,13 +1081,13 @@ questions:
|
|||
description: "The UserID of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
default: 0
|
||||
- variable: runAsGroup
|
||||
label: "runAsGroup"
|
||||
description: The groupID this App of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
default: 0
|
||||
- variable: fsGroup
|
||||
label: "fsGroup"
|
||||
description: "The group that should own ALL storage."
|
||||
|
@ -1471,3 +1331,212 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: codeserver
|
||||
label: "Codeserver"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: git
|
||||
label: "Git Settings"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: deployKey
|
||||
description: "Raw SSH private key"
|
||||
label: "deployKey"
|
||||
schema:
|
||||
type: string
|
||||
- variable: deployKeyBase64
|
||||
description: "Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence"
|
||||
label: "deployKeyBase64"
|
||||
schema:
|
||||
type: string
|
||||
- variable: service
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: type
|
||||
label: "Service Type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
|
||||
schema:
|
||||
type: string
|
||||
default: "NodePort"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- value: "LoadBalancer"
|
||||
description: "LoadBalancer"
|
||||
- variable: loadBalancerIP
|
||||
label: "LoadBalancer IP"
|
||||
description: "LoadBalancerIP"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: externalIPs
|
||||
label: "External IP's"
|
||||
description: "External IP's"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: externalIP
|
||||
label: "External IP"
|
||||
schema:
|
||||
type: string
|
||||
- variable: ports
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: codeserver
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: nodePort
|
||||
description: "leave empty to disable"
|
||||
label: "nodePort"
|
||||
schema:
|
||||
type: int
|
||||
default: 36107
|
||||
- variable: envList
|
||||
label: "Codeserver environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
- variable: promtail
|
||||
label: "Promtail"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: loki
|
||||
label: "Loki URL"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: logs
|
||||
label: "Log Paths"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: path
|
||||
label: "Path"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: args
|
||||
label: "Promtail ecommand line arguments"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: arg
|
||||
label: "Arg"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: envList
|
||||
label: "Promtail environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
|
||||
|
||||
- variable: netshoot
|
||||
label: "Netshoot"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: envList
|
||||
label: "Netshoot environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
|
@ -38,3 +38,5 @@ persistence:
|
|||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
varrun:
|
||||
enabled: true
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="authelia-4.0.10"></a>
|
||||
### [authelia-4.0.10](https://github.com/truecharts/apps/compare/authelia-4.0.9...authelia-4.0.10) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
- name: postgresql
|
||||
repository: https://truecharts.org/
|
||||
version: 3.0.3
|
||||
version: 3.0.4
|
||||
- name: redis
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 15.4.0
|
||||
digest: sha256:8e4ce6cbe97c1e0bed84547459b86d5bbcfa6ccf00bd84420c843d13b5d4af5e
|
||||
generated: "2021-09-29T08:22:35.121083309Z"
|
||||
digest: sha256:cea033c466dff1a87b40274a7fc809220e6502125dfad0f9b840459b5818c3db
|
||||
generated: "2021-09-29T16:05:36.359572448Z"
|
|
@ -3,11 +3,11 @@ appVersion: "4.31.0"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
- condition: postgresql.enabled
|
||||
name: postgresql
|
||||
repository: https://truecharts.org/
|
||||
version: 3.0.3
|
||||
version: 3.0.4
|
||||
- condition: redis.enabled
|
||||
name: redis
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
|
@ -38,4 +38,4 @@ sources:
|
|||
- https://github.com/authelia/chartrepo
|
||||
- https://github.com/authelia/authelia
|
||||
type: application
|
||||
version: 4.0.8
|
||||
version: 4.0.10
|
|
@ -19,8 +19,8 @@ Kubernetes: `>=1.16.0-0`
|
|||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://charts.bitnami.com/bitnami | redis | 15.4.0 |
|
||||
| https://truecharts.org/ | postgresql | 3.0.3 |
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://truecharts.org/ | postgresql | 3.0.4 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
Binary file not shown.
|
@ -2138,6 +2138,215 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
|
||||
- variable: codeserver
|
||||
label: "Codeserver"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: git
|
||||
label: "Git Settings"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: deployKey
|
||||
description: "Raw SSH private key"
|
||||
label: "deployKey"
|
||||
schema:
|
||||
type: string
|
||||
- variable: deployKeyBase64
|
||||
description: "Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence"
|
||||
label: "deployKeyBase64"
|
||||
schema:
|
||||
type: string
|
||||
- variable: service
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: type
|
||||
label: "Service Type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
|
||||
schema:
|
||||
type: string
|
||||
default: "NodePort"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- value: "LoadBalancer"
|
||||
description: "LoadBalancer"
|
||||
- variable: loadBalancerIP
|
||||
label: "LoadBalancer IP"
|
||||
description: "LoadBalancerIP"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: externalIPs
|
||||
label: "External IP's"
|
||||
description: "External IP's"
|
||||
schema:
|
||||
show_if: [["type", "=", "LoadBalancer"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: externalIP
|
||||
label: "External IP"
|
||||
schema:
|
||||
type: string
|
||||
- variable: ports
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: codeserver
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: nodePort
|
||||
description: "leave empty to disable"
|
||||
label: "nodePort"
|
||||
schema:
|
||||
type: int
|
||||
default: 36107
|
||||
- variable: envList
|
||||
label: "Codeserver environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
- variable: promtail
|
||||
label: "Promtail"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: loki
|
||||
label: "Loki URL"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: logs
|
||||
label: "Log Paths"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: path
|
||||
label: "Path"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: args
|
||||
label: "Promtail ecommand line arguments"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: arg
|
||||
label: "Arg"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: envList
|
||||
label: "Promtail environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
|
||||
|
||||
|
||||
- variable: netshoot
|
||||
label: "Netshoot"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: envList
|
||||
label: "Netshoot environment Variables"
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["type", "!=", "disabled"]]
|
||||
default: []
|
||||
items:
|
||||
- variable: envItem
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: identity_providers
|
||||
group: "Advanced"
|
||||
label: "Authelia Identity Providers (BETA)"
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="authelia-4.0.8"></a>
|
||||
### [authelia-4.0.8](https://github.com/truecharts/apps/compare/authelia-4.0.7...authelia-4.0.8) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update bitnami/postgresql:13.4.0 docker digest to 33c276d ([#1055](https://github.com/truecharts/apps/issues/1055))
|
||||
|
Binary file not shown.
Binary file not shown.
|
@ -1,4 +0,0 @@
|
|||
|
||||
<a name="bazarr-8.0.1"></a>
|
||||
### [bazarr-8.0.1](https://github.com/truecharts/apps/compare/bazarr-8.0.0...bazarr-8.0.1) (2021-09-26)
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
digest: sha256:2574f8d60c5c80bd4734ad033e1d6ce991b79c1419b98a3d78edfdbf0eed940e
|
||||
generated: "2021-09-26T22:57:09.084998673Z"
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="bazarr-8.0.3"></a>
|
||||
### [bazarr-8.0.3](https://github.com/truecharts/apps/compare/bazarr-8.0.2...bazarr-8.0.3) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:05:52.047632735Z"
|
|
@ -3,7 +3,7 @@ appVersion: "0.9.9"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
deprecated: false
|
||||
description: Bazarr is a companion application to Bazarr and Radarr. It manages and
|
||||
downloads subtitles based on your requirements
|
||||
|
@ -29,4 +29,4 @@ sources:
|
|||
- https://github.com/Bazarr/Bazarr
|
||||
- https://hub.docker.com/r/linuxserver/bazarr
|
||||
type: application
|
||||
version: 8.0.1
|
||||
version: 8.0.3
|
|
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="booksonic-air-3.0.2"></a>
|
||||
### [booksonic-air-3.0.2](https://github.com/truecharts/apps/compare/booksonic-air-3.0.1...booksonic-air-3.0.2) (2021-09-28)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1046](https://github.com/truecharts/apps/issues/1046))
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
digest: sha256:2574f8d60c5c80bd4734ad033e1d6ce991b79c1419b98a3d78edfdbf0eed940e
|
||||
generated: "2021-09-28T06:35:53.168232798Z"
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="booksonic-air-3.0.4"></a>
|
||||
### [booksonic-air-3.0.4](https://github.com/truecharts/apps/compare/booksonic-air-3.0.3...booksonic-air-3.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:06:01.501704224Z"
|
|
@ -3,7 +3,7 @@ appVersion: "2009.1.0"
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.8
|
||||
version: 8.0.13
|
||||
description: Booksonic is a platform for accessing the audibooks you own wherever
|
||||
you are
|
||||
home: https://github.com/truechartsapps/tree/master/charts/incubator/booksonic-air
|
||||
|
@ -20,4 +20,4 @@ name: booksonic-air
|
|||
sources:
|
||||
- https://github.com/popeen/Booksonic-Air
|
||||
- https://hub.docker.com/r/linuxserver/booksonic-air
|
||||
version: 3.0.2
|
||||
version: 3.0.4
|
|
@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
|||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 8.0.8 |
|
||||
| https://truecharts.org | common | 8.0.13 |
|
||||
|
||||
## Installing the Chart
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue