Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
703e973caa
commit
784d9378da
|
@ -15,6 +15,7 @@ dependencies:
|
|||
- name: cert-manager
|
||||
repository: https://charts.jetstack.io
|
||||
version: v1.12.2
|
||||
alias: certmanager
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
|
@ -26,7 +27,7 @@ sources:
|
|||
- https://github.com/cert-manager
|
||||
- https://cert-manager.io/
|
||||
type: application
|
||||
version: 1.0.0
|
||||
version: 1.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- operators
|
|
@ -21,6 +21,9 @@ portal:
|
|||
operator:
|
||||
register: true
|
||||
|
||||
certmanager:
|
||||
dns01RecursiveNameservers: "1.1.1.1:53,1.0.0.1:53"
|
||||
|
||||
metrics:
|
||||
main:
|
||||
enabled: false
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [fluidd-5.0.24](https://github.com/truecharts/charts/compare/fluidd-5.0.23...fluidd-5.0.24) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [fluidd-5.0.25](https://github.com/truecharts/charts/compare/fluidd-5.0.24...fluidd-5.0.25) (2023-07-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/fluidd to v1.24.1 ([#10828](https://github.com/truecharts/charts/issues/10828))
|
||||
|
||||
|
||||
|
||||
|
||||
## [fluidd-5.0.24](https://github.com/truecharts/charts/compare/fluidd-5.0.23...fluidd-5.0.24) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
|
||||
|
||||
|
||||
## [fluidd-5.0.15](https://github.com/truecharts/charts/compare/fluidd-5.0.14...fluidd-5.0.15) (2023-05-22)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9089](https://github.com/truecharts/charts/issues/9089))
|
||||
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.23.3"
|
||||
appVersion: "1.24.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
|
@ -18,7 +18,7 @@ name: fluidd
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/fluidd
|
||||
- https://github.com/fluidd-core/fluidd
|
||||
version: 5.0.24
|
||||
version: 5.0.25
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [fluidd-5.0.25](https://github.com/truecharts/charts/compare/fluidd-5.0.24...fluidd-5.0.25) (2023-07-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/fluidd to v1.24.1 ([#10828](https://github.com/truecharts/charts/issues/10828))
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/fluidd
|
||||
tag: 1.23.3@sha256:b35f506d6ee5e50c32e65ea48dad73e7f4ccc8a948c743e6b68b161c8f82cd69
|
||||
tag: v1.24.1@sha256:7209a91c8e5f99cd802b8435ab19eb928dc665b113d1b56d1c48b937072bb616
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
|
@ -549,13 +549,44 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: setPermissions
|
||||
label: Automatic Permissions
|
||||
description: Automatically set permissions on install
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
schema:
|
||||
show_if: [["type", "=", "hostPath"]]
|
||||
type: boolean
|
||||
default: false
|
||||
show_if: [["type", "!=", "pvc"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: chown
|
||||
label: Run CHOWN
|
||||
description: |
|
||||
It will run CHOWN on the path with the given fsGroup
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: chmod
|
||||
label: Run CHMOD
|
||||
description: |
|
||||
It will run CHMOD on the path with the given value</br>
|
||||
Format should be 3 digits, e.g. 770
|
||||
schema:
|
||||
type: string
|
||||
valid_chars: '[0-9]{3}'
|
||||
default: ""
|
||||
- variable: recursive
|
||||
label: Recursive
|
||||
description: |
|
||||
It will run CHOWN and CHMOD recursively
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: readOnly
|
||||
label: Read Only
|
||||
schema:
|
Loading…
Reference in New Issue