Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
135e0e6c11
commit
4ac89b395f
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [kube-state-metrics-4.0.2](https://github.com/truecharts/charts/compare/kube-state-metrics-4.0.1...kube-state-metrics-4.0.2) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
||||
- bump everything to ensure catalog has latest versions
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [kube-state-metrics-4.0.3](https://github.com/truecharts/charts/compare/kube-state-metrics-4.0.2...kube-state-metrics-4.0.3) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image bitnami/kube-state-metrics to 2.10.1[@9e8a6bb](https://github.com/9e8a6bb) ([#15819](https://github.com/truecharts/charts/issues/15819))
|
||||
|
||||
|
||||
|
||||
|
||||
## [kube-state-metrics-4.0.2](https://github.com/truecharts/charts/compare/kube-state-metrics-4.0.1...kube-state-metrics-4.0.2) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
|
||||
|
||||
## [kube-state-metrics-3.0.35](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.34...kube-state-metrics-3.0.35) (2023-11-08)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm chart common to 14.3.3 ([#14449](https://github.com/truecharts/charts/issues/14449))
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
kubeVersion: ">=1.24.0"
|
||||
apiVersion: v2
|
||||
name: kube-state-metrics
|
||||
version: 4.0.2
|
||||
version: 4.0.3
|
||||
appVersion: 2.10.1
|
||||
description:
|
||||
kube-state-metrics is a simple service that listens to the Kubernetes
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [kube-state-metrics-4.0.3](https://github.com/truecharts/charts/compare/kube-state-metrics-4.0.2...kube-state-metrics-4.0.3) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image bitnami/kube-state-metrics to 2.10.1[@9e8a6bb](https://github.com/9e8a6bb) ([#15819](https://github.com/truecharts/charts/issues/15819))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: bitnami/kube-state-metrics
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 2.10.1@sha256:6819ee084fdb0ddee851ffcda90833d4e5b991987bdd1fbe4804ade61f47ccdb
|
||||
tag: 2.10.1@sha256:9e8a6bbd41c9a5624051d3da5647c3b19e1fec939b9b727e6e24de2035b4b265
|
||||
service:
|
||||
main:
|
||||
ports:
|
|
@ -219,6 +219,44 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: imagePullSecretList
|
||||
group: "General Settings"
|
||||
label: "Image Pull Secrets"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: pullsecretentry
|
||||
label: "Pull Secret"
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: registry
|
||||
label: "Registry"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "https://index.docker.io/v1/"
|
||||
- variable: username
|
||||
label: "Username"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: password
|
||||
label: "Password"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: email
|
||||
label: "Email"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: service
|
||||
group: Networking and Services
|
||||
label: Configure Service(s)
|
||||
|
@ -592,6 +630,82 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: iscsi
|
||||
label: iSCSI Options
|
||||
schema:
|
||||
show_if: [["type", "=", "iscsi"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: targetPortal
|
||||
label: targetPortal
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: iqn
|
||||
label: iqn
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: lun
|
||||
label: lun
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: authSession
|
||||
label: authSession
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: authDiscovery
|
||||
label: authDiscovery
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
|
@ -840,6 +954,46 @@ questions:
|
|||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: advanced
|
||||
label: Show Advanced Settings
|
||||
description: Advanced settings are not covered by TrueCharts Support
|
||||
|
@ -1067,6 +1221,46 @@ questions:
|
|||
type: string
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
default: ""
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: entrypoint
|
||||
label: Traefik Entrypoint
|
||||
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
|
||||
## [doublecommander-9.0.25](https://github.com/truecharts/charts/compare/doublecommander-9.0.24...doublecommander-9.0.25) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
||||
- bump everything to ensure catalog has latest versions
|
||||
- fix annotations again
|
||||
- update annotations
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [doublecommander-9.0.26](https://github.com/truecharts/charts/compare/doublecommander-9.0.25...doublecommander-9.0.26) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image ghcr.io/linuxserver/doublecommander to latest[@fd53071](https://github.com/fd53071) ([#15821](https://github.com/truecharts/charts/issues/15821))
|
||||
|
||||
|
||||
|
||||
|
||||
## [doublecommander-9.0.25](https://github.com/truecharts/charts/compare/doublecommander-9.0.24...doublecommander-9.0.25) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
|
||||
|
||||
|
||||
|
||||
|
||||
## [doublecommander-9.0.16](https://github.com/truecharts/charts/compare/doublecommander-9.0.15...doublecommander-9.0.16) (2023-11-02)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#14245](https://github.com/truecharts/charts/issues/14245))
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
kubeVersion: ">=1.24.0"
|
||||
apiVersion: v2
|
||||
name: doublecommander
|
||||
version: 9.0.25
|
||||
version: 9.0.26
|
||||
appVersion: latest
|
||||
description:
|
||||
A free cross platform open source file manager with two panels side by
|
||||
|
@ -10,10 +10,10 @@ home: https://truecharts.org/charts/stable/doublecommander
|
|||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/doublecommander.png
|
||||
deprecated: false
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/doublecommander
|
||||
- https://ghcr.io/linuxserver/doublecommander
|
||||
- https://doublecmd.sourceforge.io/
|
||||
- https://github.com/linuxserver/docker-doublecommander
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/doublecommander
|
||||
- https://ghcr.io/linuxserver/doublecommander
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [doublecommander-9.0.26](https://github.com/truecharts/charts/compare/doublecommander-9.0.25...doublecommander-9.0.26) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image ghcr.io/linuxserver/doublecommander to latest[@fd53071](https://github.com/fd53071) ([#15821](https://github.com/truecharts/charts/issues/15821))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: ghcr.io/linuxserver/doublecommander
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:8ef454488454b10b322754e683f3339fcd38f403c6d5cd433422e4be3559b727
|
||||
tag: latest@sha256:fd530718d52e60d9fc4c95135012eb43125e407d8e8a83b176fb0819e90bb00e
|
||||
securityContext:
|
||||
container:
|
||||
readOnlyRootFilesystem: false
|
|
@ -226,6 +226,44 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: imagePullSecretList
|
||||
group: "General Settings"
|
||||
label: "Image Pull Secrets"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: pullsecretentry
|
||||
label: "Pull Secret"
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: registry
|
||||
label: "Registry"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "https://index.docker.io/v1/"
|
||||
- variable: username
|
||||
label: "Username"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: password
|
||||
label: "Password"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: email
|
||||
label: "Email"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: service
|
||||
group: Networking and Services
|
||||
label: Configure Service(s)
|
||||
|
@ -533,6 +571,8 @@ questions:
|
|||
description: emptyDir
|
||||
- value: nfs
|
||||
description: NFS Share
|
||||
- value: iscsi
|
||||
description: iSCSI Share
|
||||
- variable: server
|
||||
label: NFS Server
|
||||
schema:
|
||||
|
@ -545,6 +585,83 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: iscsi
|
||||
label: iSCSI Options
|
||||
schema:
|
||||
show_if: [["type", "=", "iscsi"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: targetPortal
|
||||
label: targetPortal
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: iqn
|
||||
label: iqn
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: lun
|
||||
label: lun
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: authSession
|
||||
label: authSession
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: authDiscovery
|
||||
label: authDiscovery
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
|
@ -637,7 +754,7 @@ questions:
|
|||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
- value: disabled
|
||||
description: disabled
|
||||
- value: smb
|
||||
description: smb
|
||||
|
@ -751,6 +868,82 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: iscsi
|
||||
label: iSCSI Options
|
||||
schema:
|
||||
show_if: [["type", "=", "iscsi"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: targetPortal
|
||||
label: targetPortal
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: iqn
|
||||
label: iqn
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: lun
|
||||
label: lun
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: authSession
|
||||
label: authSession
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: authDiscovery
|
||||
label: authDiscovery
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
|
@ -999,6 +1192,46 @@ questions:
|
|||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: advanced
|
||||
label: Show Advanced Settings
|
||||
description: Advanced settings are not covered by TrueCharts Support
|
||||
|
@ -1226,6 +1459,46 @@ questions:
|
|||
type: string
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
default: ""
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: entrypoint
|
||||
label: Traefik Entrypoint
|
||||
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
|
|
@ -1,10 +0,0 @@
|
|||
|
||||
|
||||
## [libremdb-3.0.324](https://github.com/truecharts/charts/compare/libremdb-3.0.322...libremdb-3.0.324) (2023-12-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image quay.io/pussthecatorg/libremdb to latest[@871c7c3](https://github.com/871c7c3) ([#15789](https://github.com/truecharts/charts/issues/15789))
|
||||
- update container image quay.io/pussthecatorg/libremdb to latest[@96fde3e](https://github.com/96fde3e) ([#15774](https://github.com/truecharts/charts/issues/15774))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [libremdb-3.0.325](https://github.com/truecharts/charts/compare/libremdb-3.0.324...libremdb-3.0.325) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image quay.io/pussthecatorg/libremdb to latest[@6730275](https://github.com/6730275) ([#15814](https://github.com/truecharts/charts/issues/15814))
|
||||
|
||||
|
||||
|
||||
|
||||
## [libremdb-3.0.324](https://github.com/truecharts/charts/compare/libremdb-3.0.322...libremdb-3.0.324) (2023-12-06)
|
||||
|
||||
### Chore
|
||||
|
@ -81,15 +90,6 @@
|
|||
|
||||
|
||||
|
||||
## [libremdb-3.0.323](https://github.com/truecharts/charts/compare/libremdb-3.0.322...libremdb-3.0.323) (2023-12-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image quay.io/pussthecatorg/libremdb to latest[@96fde3e](https://github.com/96fde3e) ([#15774](https://github.com/truecharts/charts/issues/15774))
|
||||
|
||||
|
||||
|
||||
|
||||
## [libremdb-3.0.323](https://github.com/truecharts/charts/compare/libremdb-3.0.322...libremdb-3.0.323) (2023-12-06)
|
||||
|
||||
### Chore
|
|
@ -1,7 +1,7 @@
|
|||
kubeVersion: ">=1.24.0"
|
||||
apiVersion: v2
|
||||
name: libremdb
|
||||
version: 3.0.324
|
||||
version: 3.0.325
|
||||
appVersion: latest
|
||||
description: A free & open source IMDb front-end.
|
||||
home: https://truecharts.org/charts/stable/libremdb
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [libremdb-3.0.325](https://github.com/truecharts/charts/compare/libremdb-3.0.324...libremdb-3.0.325) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image quay.io/pussthecatorg/libremdb to latest[@6730275](https://github.com/6730275) ([#15814](https://github.com/truecharts/charts/issues/15814))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: quay.io/pussthecatorg/libremdb
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:871c7c36e203facebe62763044331e58e579f2515f262b750de080d5e5afb872
|
||||
tag: latest@sha256:6730275d05542f6907262976eefb6e4c789c209ec88935cc30022f55512c6eca
|
||||
service:
|
||||
main:
|
||||
ports:
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
|
||||
## [trilium-notes-9.1.2](https://github.com/truecharts/charts/compare/trilium-notes-9.1.1...trilium-notes-9.1.2) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
||||
- bump everything to ensure catalog has latest versions
|
||||
- fix annotations again
|
||||
- update annotations
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [trilium-notes-9.1.3](https://github.com/truecharts/charts/compare/trilium-notes-9.1.2...trilium-notes-9.1.3) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image ghcr.io/zadam/trilium to v0.62.4[@f98cde7](https://github.com/f98cde7) ([#15822](https://github.com/truecharts/charts/issues/15822))
|
||||
|
||||
|
||||
|
||||
|
||||
## [trilium-notes-9.1.2](https://github.com/truecharts/charts/compare/trilium-notes-9.1.1...trilium-notes-9.1.2) (2023-12-03)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
|
||||
|
||||
|
||||
|
||||
|
||||
## [trilium-notes-9.0.9](https://github.com/truecharts/charts/compare/trilium-notes-9.0.8...trilium-notes-9.0.9) (2023-11-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/trilium-notes to v0.61.13 ([#14377](https://github.com/truecharts/charts/issues/14377))
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
kubeVersion: ">=1.24.0"
|
||||
apiVersion: v2
|
||||
name: trilium-notes
|
||||
version: 9.1.2
|
||||
appVersion: 0.62.3
|
||||
version: 9.1.3
|
||||
appVersion: 0.62.4
|
||||
description:
|
||||
Trilium Notes is a hierarchical note taking application with focus on
|
||||
building large personal knowledge bases.
|
||||
|
@ -10,9 +10,9 @@ home: https://truecharts.org/charts/stable/trilium-notes
|
|||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/trilium-notes.png
|
||||
deprecated: false
|
||||
sources:
|
||||
- https://ghcr.io/zadam/trilium
|
||||
- https://github.com/zadam/trilium
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/trilium-notes
|
||||
- https://ghcr.io/zadam/trilium
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [trilium-notes-9.1.3](https://github.com/truecharts/charts/compare/trilium-notes-9.1.2...trilium-notes-9.1.3) (2023-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image ghcr.io/zadam/trilium to v0.62.4[@f98cde7](https://github.com/f98cde7) ([#15822](https://github.com/truecharts/charts/issues/15822))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: ghcr.io/zadam/trilium
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.62.3@sha256:a4208654df5972354c48cbee5b4620505ae4b0bb6d0c74096517701bd91ccc03
|
||||
tag: 0.62.4@sha256:f98cde7e486e92357d6bee6611a91297cb328261169101c0348a7f450fb766f2
|
||||
service:
|
||||
main:
|
||||
ports:
|
|
@ -228,6 +228,44 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
required: true
|
||||
|
||||
- variable: imagePullSecretList
|
||||
group: "General Settings"
|
||||
label: "Image Pull Secrets"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: pullsecretentry
|
||||
label: "Pull Secret"
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: registry
|
||||
label: "Registry"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "https://index.docker.io/v1/"
|
||||
- variable: username
|
||||
label: "Username"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: password
|
||||
label: "Password"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: email
|
||||
label: "Email"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: service
|
||||
group: Networking and Services
|
||||
label: Configure Service(s)
|
||||
|
@ -535,6 +573,8 @@ questions:
|
|||
description: emptyDir
|
||||
- value: nfs
|
||||
description: NFS Share
|
||||
- value: iscsi
|
||||
description: iSCSI Share
|
||||
- variable: server
|
||||
label: NFS Server
|
||||
schema:
|
||||
|
@ -547,6 +587,83 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: iscsi
|
||||
label: iSCSI Options
|
||||
schema:
|
||||
show_if: [["type", "=", "iscsi"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: targetPortal
|
||||
label: targetPortal
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: iqn
|
||||
label: iqn
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: lun
|
||||
label: lun
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: authSession
|
||||
label: authSession
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: authDiscovery
|
||||
label: authDiscovery
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
|
@ -639,7 +756,7 @@ questions:
|
|||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
- value: disabled
|
||||
description: disabled
|
||||
- value: smb
|
||||
description: smb
|
||||
|
@ -753,6 +870,82 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: iscsi
|
||||
label: iSCSI Options
|
||||
schema:
|
||||
show_if: [["type", "=", "iscsi"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: targetPortal
|
||||
label: targetPortal
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: iqn
|
||||
label: iqn
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: lun
|
||||
label: lun
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: authSession
|
||||
label: authSession
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: authDiscovery
|
||||
label: authDiscovery
|
||||
schema:
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: username
|
||||
label: username
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: password
|
||||
label: password
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: usernameInitiator
|
||||
label: usernameInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: passwordInitiator
|
||||
label: passwordInitiator
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
|
@ -1001,6 +1194,46 @@ questions:
|
|||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: advanced
|
||||
label: Show Advanced Settings
|
||||
description: Advanced settings are not covered by TrueCharts Support
|
||||
|
@ -1228,6 +1461,46 @@ questions:
|
|||
type: string
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
default: ""
|
||||
- variable: integration
|
||||
label: Integrations
|
||||
description: Connect ingress with other charts
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: homepage
|
||||
label: Homepage
|
||||
description: Connect ingress with Homepage
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: name
|
||||
label: Name
|
||||
description: defaults to chartname
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: description
|
||||
label: Description
|
||||
description: defaults to chart description
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: group
|
||||
label: Group
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "default"
|
||||
show_if: [["enabled", "=", true]]
|
||||
- variable: entrypoint
|
||||
label: Traefik Entrypoint
|
||||
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
|
Loading…
Reference in New Issue